|
static bool | MMHasParameterOfType (this Animator self, string name, AnimatorControllerParameterType type) |
| Determines if an animator contains a certain parameter, based on a type and a name More...
|
|
static void | AddAnimatorParameterIfExists (Animator animator, string parameterName, out int parameter, AnimatorControllerParameterType type, HashSet< int > parameterList) |
| Adds an animator parameter name to a parameter list if that parameter exists. More...
|
|
static void | AddAnimatorParameterIfExists (Animator animator, string parameterName, AnimatorControllerParameterType type, HashSet< string > parameterList) |
| Adds an animator parameter name to a parameter list if that parameter exists. More...
|
|
static void | UpdateAnimatorBool (Animator animator, string parameterName, bool value) |
|
static void | UpdateAnimatorInteger (Animator animator, string parameterName, int value) |
| Updates the animator integer. More...
|
|
static void | UpdateAnimatorFloat (Animator animator, string parameterName, float value, bool performSanityCheck=true) |
| Updates the animator's float More...
|
|
static bool | UpdateAnimatorBool (Animator animator, int parameter, bool value, HashSet< int > parameterList, bool performSanityCheck=true) |
|
static bool | UpdateAnimatorTrigger (Animator animator, int parameter, HashSet< int > parameterList, bool performSanityCheck=true) |
| Sets an animator's trigger of the int parameter specified More...
|
|
static bool | SetAnimatorTrigger (Animator animator, int parameter, HashSet< int > parameterList, bool performSanityCheck=true) |
| Triggers an animator trigger. More...
|
|
static bool | UpdateAnimatorFloat (Animator animator, int parameter, float value, HashSet< int > parameterList, bool performSanityCheck=true) |
| Updates the animator float. More...
|
|
static bool | UpdateAnimatorInteger (Animator animator, int parameter, int value, HashSet< int > parameterList, bool performSanityCheck=true) |
| Updates the animator integer. More...
|
|
static void | UpdateAnimatorBool (Animator animator, string parameterName, bool value, HashSet< string > parameterList, bool performSanityCheck=true) |
|
static void | UpdateAnimatorTrigger (Animator animator, string parameterName, HashSet< string > parameterList, bool performSanityCheck=true) |
| Sets an animator's trigger of the string parameter name specified More...
|
|
static void | SetAnimatorTrigger (Animator animator, string parameterName, HashSet< string > parameterList, bool performSanityCheck=true) |
| Triggers an animator trigger. More...
|
|
static void | UpdateAnimatorFloat (Animator animator, string parameterName, float value, HashSet< string > parameterList, bool performSanityCheck=true) |
| Updates the animator float. More...
|
|
static void | UpdateAnimatorInteger (Animator animator, string parameterName, int value, HashSet< string > parameterList, bool performSanityCheck=true) |
| Updates the animator integer. More...
|
|
static void | UpdateAnimatorBoolIfExists (Animator animator, string parameterName, bool value, bool performSanityCheck=true) |
|
static void | UpdateAnimatorTriggerIfExists (Animator animator, string parameterName, bool performSanityCheck=true) |
| Updates an animator trigger if it exists More...
|
|
static void | SetAnimatorTriggerIfExists (Animator animator, string parameterName, bool performSanityCheck=true) |
| Triggers an animator trigger after checking for the parameter's existence. More...
|
|
static void | UpdateAnimatorFloatIfExists (Animator animator, string parameterName, float value, bool performSanityCheck=true) |
| Updates the animator float after checking for the parameter's existence. More...
|
|
static void | UpdateAnimatorIntegerIfExists (Animator animator, string parameterName, int value, bool performSanityCheck=true) |
| Updates the animator integer after checking for the parameter's existence. More...
|
|