-
Notifications
You must be signed in to change notification settings - Fork 293
animation_commands
Steve Halliwell edited this page Oct 20, 2019
·
1 revision
Plays a state of an animator according to the state name
Defined in Fungus.PlayAnimState
Property | Type | Description |
---|---|---|
Animator | Fungus.AnimatorData | Reference to an Animator component in a game object |
State Name | Fungus.StringData | Name of the state you want to play |
Layer | Fungus.IntegerData | Layer to play animation on |
Time | Fungus.FloatData | Start time of animation |
Resets a trigger parameter on an Animator component.
Defined in Fungus.ResetAnimTrigger
Property | Type | Description |
---|---|---|
_animator | Fungus.AnimatorData | Reference to an Animator component in a game object |
_parameter Name | Fungus.StringData | Name of the trigger Animator parameter that will be reset |
Sets a boolean parameter on an Animator component to control a Unity animation
Defined in Fungus.SetAnimBool
Property | Type | Description |
---|---|---|
_animator | Fungus.AnimatorData | Reference to an Animator component in a game object |
_parameter Name | Fungus.StringData | Name of the boolean Animator parameter that will have its value changed |
Value | Fungus.BooleanData | The boolean value to set the parameter to |
Sets a float parameter on an Animator component to control a Unity animation
Defined in Fungus.SetAnimFloat
Property | Type | Description |
---|---|---|
_animator | Fungus.AnimatorData | Reference to an Animator component in a game object |
_parameter Name | Fungus.StringData | Name of the float Animator parameter that will have its value changed |
Value | Fungus.FloatData | The float value to set the parameter to |
Sets an integer parameter on an Animator component to control a Unity animation
Defined in Fungus.SetAnimInteger
Property | Type | Description |
---|---|---|
_animator | Fungus.AnimatorData | Reference to an Animator component in a game object |
_parameter Name | Fungus.StringData | Name of the integer Animator parameter that will have its value changed |
Value | Fungus.IntegerData | The integer value to set the parameter to |
Sets a trigger parameter on an Animator component to control a Unity animation
Defined in Fungus.SetAnimTrigger
Property | Type | Description |
---|---|---|
_animator | Fungus.AnimatorData | Reference to an Animator component in a game object |
_parameter Name | Fungus.StringData | Name of the trigger Animator parameter that will have its value changed |
Auto-Generated by Fungus.ExportReferenceDocs