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