コード例 #1
0
ファイル: PathService.cs プロジェクト: outscal/hitman
 public void DestroyPath()
 {
     if (controller != null)
     {
         controller.DestroyPath();
         controller = null;
     }
 }
コード例 #2
0
ファイル: PathService.cs プロジェクト: outscal/hitman
 public void DrawGraph(ScriptableGraph Graph)
 {
     controller = new PathController(Graph, this);
     controller.DrawGraph(Graph);
 }