Notifications
Clear all

[Closed] making morpher keys via maxscript

i am having some difficulty understanding how to set keys for the barycentric controler in a morpher modifier.

what i would like to do is move the time line to a specific frame set the sliders and then make the key. I can move the time line and set the slider but i am having problem setting the key. The maxscript guide seems a little hazy on this subject ( i been re reading the same chapter for 2 says before it occured to me to assign a bary centric controler to the object )

can anyone explain bary centric controlers and how to make keys in laymans terms?

cheers

3 Replies

I guess you are missing out on the
‘with animate on’ context.

Try:


with animate on at time 20
	(
	 $.morpher[1].value = 50
	)
-- OR
 
with animate on --at time 40
	( 
	WM3_MC_Setvalue $.morpher 2 10.0
	)

  • shibu

no thats how i am doing it at the moment. thing is i can see it kind of setting keys but it isnt recording them… ho hum back to the drawing board i guess

Doh!
just realsed what i was doing wrong. there was a small error that was causing it to end a little early and not place keys properly
cheers aaaaCHoooo