public static HandCommandMoveTo Create(float x, float y, float z, float speed) { return(HandCommandMoveTo.Create(new Vector3(x, y, z), speed)); }
void PointerMoveTo(Vector3 target, float speed, HelpingHandScript handScript) { handScript.AddCommand(HandCommandMoveTo.Create(target, speed)); }