|
guys , I’m new to scripting and i want to make a facial controller panel. but the case is when i want to change the morpher value by slider inside maxscript “” i don’t know how to do that “”
|
|
|
|
The simple way is just by parameter wiring, no real need for MaxScript.
If you do need MaxScript, the “Practical Examples” in the MaxScript help might get you started.
Do ask more if you come up with specific issues…
-jeff
Max/Composite 2012 (subscription)
Win7-64pro, Intel i7-hex on SuperMicro mobo, 12 GB RAM
nVidia Quadro 5000, render farmette on BB2012
|
|
|
|
bbox
i think you know abuts rollouts in ms
try this
1. create sphere (edite poly)
2.clon it
3. change, edit obj
4.add morpher to original sphere
5.add morpher 1 copy sphere
5.in ms editor type
rollout test “obj01” width:333 height:104
(
slider sld1 “Slider” pos:[17,51] width:180 height:44
on sld1 changed val do
(
$sphere01.morpher [1] .value =val
)
)
createDialog test
|
|
|