Пример #1
0
 // マウスがポイントと接触したときの処理
 public void EnterMousePoint()
 {
     // 描画中かつ前回とは違うポイントの時は線を追加
     // 同じ線がすでにある場合は追加しない
     if (lineGenerator.state == LineGenerator.STATE.DRAW && lineGenerator.PastPoint != pointNum && !lineGenerator.CheckHaveLine(pointNum))
     {
         Debug.Log("線追加");
         lineGenerator.AddLineObject(this.transform.GetChild(0).position, pointNum);
     }
 }