Notifications
Clear all

[Closed] Add Subanim

 MZ1

How we can add a animatable subanim to a empty modifier?
I know we can do this by adding custom attribute, but I have 2 problems:

  • I don’t want to add rollout to modifier.
  • I want to add animatable subanim (parameter) directly to the modifier not to a not-animatable attribute. something like Modifier/Subanim, not Modifier/Attribute/Subanim
2 Replies
1 Reply
(@denist)
Joined: 11 months ago

Posts: 0

as showed above you can add a CA without rollout… but the better solution is to make your own scripted modifier that extends Empty modifier.

try this


myCA = attributes attributeName (
	parameters paramsName (
		property type:#float
	)
)

custAttributes.add modifierVar myCA