This change allows modification of properties of the member instances of the object. For example, it allows to set the green channel of the color through python code:
vis['obj1']['<object>'].set_property('material.color.g', 1)
The string is unwrapped into:
this.object['material']['color']['g'] = 1
It also allows animating color transitions with (again from python):
This change allows modification of properties of the member instances of the object. For example, it allows to set the green channel of the color through python code:
vis['obj1']['<object>'].set_property('material.color.g', 1)
The string is unwrapped into:this.object['material']['color']['g'] = 1
It also allows animating color transitions with (again from python):