コード例 #1
0
ファイル: HelpingHandScript.cs プロジェクト: zimpzon/haps
 public static HandCommandMoveTo Create(float x, float y, float z, float speed)
 {
     return(HandCommandMoveTo.Create(new Vector3(x, y, z), speed));
 }
コード例 #2
0
ファイル: HintScript.cs プロジェクト: zimpzon/haps
 void PointerMoveTo(Vector3 target, float speed, HelpingHandScript handScript)
 {
     handScript.AddCommand(HandCommandMoveTo.Create(target, speed));
 }