bob-white

Results 18 comments of bob-white

I like the idea of upping visibility. This [link](http://around-the-corner.typepad.com/adn/2013/04/distributing-plug-insfiles-on-maya-and-3ds-max.html) while old seems to explain what is needed. From the sounds of it, we'd just be packaging everything up in some...

It looks like [Red9](https://github.com/markj3d/Red9_StudioPack) is on the App store. Might be worth asking mark about his experience with it. We could also post something on https://www.highend3d.com/, though it lacks the...

That one fails, but this works: ```python dummy = {'backgroundColor': (1,0,0), 'width': 200} Button(css=dummy) ``` its really just the `Styled.stylesheet` property that causes the issue, at it tries to create...

So a kind of xaml for mGui?

I like the simple syntax, but we do lose a few features from yaml. * Serialize arbitrary objects - json dialects are limited to basic primitives * Circular references -...

A definite possibility. I did a quick test of converting the shelf_loader over to use pure dictionaries, loaded from a json file. https://github.com/bob-white/mGui/tree/shelf_no_yaml - didn't think it was worth a...

So are you thinking we'd mess with the existing UI in place? Or generate a `AETemplate.mel` file? Or should we look at targeting the `AETemplate.xml` [format instead](http://help.autodesk.com/view/MAYAUL/2018/ENU/?guid=GUID-D11B1A16-C069-463F-B06F-2AE03D99D5D5)?

That is super weird. Just did a quick local run and the whole test suite passed. Though I'm just running them manually from sublime, not from pycharm. I wonder if...

Realized I never hit comment before actually pushing a new branch. But the basic idea in there is that we remove mGui from `sys.modules` before applying the mocks. That way...

Yeah, that's actually why I started using it for testing in Maya. I couldn't ever get the proper module order for `reload` to not be awful. So I just went...