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.
--Turn on/off node visibility
$.visibility = on --true
$.visibility = off --false--To toggle visibility try this
$.visibility = not $.visibility --toggle visibility
$[1].controller -- the visibility controller
Example from maxscript help (topic "General Node Properties")
--assigns a controller:
$.visibility = bezier_float()--set the current value to semi-visible:
$.visibility.controller.value = 0.5--animate the value to 0 on frame 100
animate on at time 100 $.visibility.controller.value = 0.0
Comments
Node visibility
Example from maxscript help (topic "General Node Properties")
bga
Hi barigazy, thank you very
Hi barigazy,
thank you very much.
$[1].controllerwill do it.
Ok. But be careful with
Ok. But be careful with visibility controller.
May happen that 3dsmax also disappears. ;)
bga