Animator.SetVector
SetVector(name: string, value: Vector3): void;
void SetVector(string name, Vector3 value);
def SetVector(name as string, value as Vector3) as void
Parameters

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

Sets the value of a vector parameter.

SetVector(id: int, value: Vector3): void;
void SetVector(int id, Vector3 value);
def SetVector(id as int, value as Vector3) 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 a vector parameter.