About this site
ScriptSpot is a diverse online community of artists and developers who come together to find and share scripts that empower their creativity with 3ds Max. Our users come from all parts of the world and work in everything from visual effects to gaming, architecture, students or hobbyists.
Comments
I have solved it with for o
I have solved it with
for o in geometry do
(o.visibility = bezier_float()
with animate on
(
at time 0 o.visibility.controller.value = 0
at time 100 o.visibility.controller.value = 1
)
)
I started on making a script
I started on making a script to do this once upon a time ;o)
It's not finnished, but here it is anyway:
Raymond H.Ingebretsen - http://www.homme3d.com
The hide property can not be
The hide property can not be animated by default, because it has no animation track yet. You can add one manually in the graph editor, or use this wonderful script by lonerobot to animate the visibility:
http://www.scriptspot.com/3ds-max/scripts/visibility-assistant
Cheers
Never get low & slow & out of ideas
Thx, I am looking for
Thx, I am looking for something simple with animate on that I can add to may program. I tryed this
for o in geometry do
(o.visibility = bezier_float()
with animate on
(
at time 0 o.visibility.controller.value = [0,0,0]
at time 100 o.visibility.controller.value = [0,1,1]
)
)
but I get
-- Error occurred in o loop; filename: C:\Users\Avner Dei\Documents\3dsMax\Scripts\viz.ms; position: 138; line: 6
-- Frame:
-- o: $Box001
-- Unable to convert: [0,0,0] to type: Float