Hi
I’m investigating some script changes since upgrading to DS4.5 and have tracked it down (I think) to possible changes to the DzNode.getScaleControl functionality since DS4.0.
There are 4 related functions
getScaleControl()
getXScaleControl()
getYScaleControl()
getZScaleControl()
In DS4, after calling setValue() on any of the scale controls, DS would propagate the W scale to the underlying X, Y and Z scale controls and reset the W scale control to 1, as follows:
//Node's initial scale vector (1, 1, 1, 1)
getScaleControl().setValue(2)
//Node's final scale vector (1, 2, 2, 2)
It appears now that in DS4.5 the W scale is not propagated to the underlying controls, as follows:
//Node's initial scale vector (1, 1, 1, 1)
getScaleControl().setValue(2)
//Node's final scale vector (2, 1, 1, 1)
Can anyone pls confirm whether the scale controls implementation was changed in DS4.5?
Thanks


