AutoKey - non-keyable spinners???

Hi

I have written a script that adds several custom spinner attributes to an object. Is there a way to add a spinner that doesnt create a key when its changed? I have looked in the help and can only find the setKeyBrackets: attribute.

The spinner is being wired to a non-animatable perammeter and I don't want any keys on the custom attribute when changed by the User.

Thanks

g

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
gramx's picture

Thanks Anubis

Great! Just what I was looking for.

many thanks

gramx

Anubis's picture

Set animatable:OFF for you

Set animatable:OFF for you spinner into the param block

parameters main rollout:"params"
(
   spName type:#integer default:1 animatable:OFF ui:sp_uiName
)
rollout params "Parameters"
(
   spinner sp_uiName "Label:" type:#integer range:[-12,12,1]
)

my recent MAXScripts RSS (archive here)

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.