Class AnimatorList
A ReferenceList
which can hold a list of Animators. Also has some convenience methods for interacting
with all items at once.
Implements
Inherited Members
Namespace: ScriptableFramework
Assembly: cs.temp.dll.dll
Syntax
public class AnimatorList : ReferenceList<Animator>, IList<Animator>, IReferenceContainer
Methods
SetBoolToAll(String, Boolean)
Sets the value of the given boolean parameter to all Animators in the list.
Declaration
public virtual void SetBoolToAll(string name, bool value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The parameter name |
System.Boolean | value | The new parameter value |
SetFloatToAll(String, Single)
Sets the value of the given float parameter to all Animators in the list.
Declaration
public virtual void SetFloatToAll(string name, float value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The parameter name |
System.Single | value | The new parameter value |
SetIntegerToAll(String, Int32)
Sets the value of the given integer parameter to all Animators in the list.
Declaration
public virtual void SetIntegerToAll(string name, int value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The parameter name |
System.Int32 | value | The new parameter value |
SetTriggerToAll(String)
Sets the value of the given trigger parameter to all Animators in the list.
Declaration
public virtual void SetTriggerToAll(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The parameter name |