Super exciting to see 4.03 out, especially with the expanded RenderObject API, but I am running into some issues with the CameraObject class.
Setting attributes in Python doesn't do anything, i.e. this line of code
mset.findObject('Main Camera').fov = 20
does nothing, while inherited class attributes do work:
mset.findObject('Main Camera').position = [10,12,10]
produces the expected behavior. The same is true for CameraLens objects.
Is there some different way of accessing those attributes or is it a bug?
Thanks!