Animator.SetInteger
SetInteger(name: string, value: int): void;
void SetInteger(string name, int value);
def SetInteger(name as string, value as int) as void
Parameters

name The name of the parameter.
value The new value for the parameter.
Description

Sets the value of an integer parameter.

SetInteger(id: int, value: int): void;
void SetInteger(int id, int value);
def SetInteger(id as int, value as int) as void
Parameters

id The id of the parameter. The id is generated using Animator::StringToHash.
value The new value for the parameter.
Description

Sets the value of an integer parameter.