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