Notifications
Clear all

[Closed] Scaling object with the world coord

how to scale an object in the world coordinate in maxscript

as an exemple:


delete Objects
thebox = box ()
rotate thebox (angleaxis -46.6641 [0,1,0])
in coordsys world thebox.scale = [1,1,0.5]

this will scale the box on his local Z axis. But I dont want to, I want the box to Skew. You can do it manually using the scale tool and the world coordsystem but it doesn’t work with maxscript
Do I need to do something specific?

2 Replies
in coordsys world scale thebox [1,1,0.5]

cool it working, but it there a way to input that inside a script controller other than using another node to control the scale and using a dependsOn ?

what I’d like to have is to have object B follow the world scale value of Object A in real time.