예제 #1
0
 public void InTouchArea(TouchPointScript conTouch)
 {
     if (conTouch.name != "Default" && canLook)
     {
         StaticCorouting.Start("TimeCounting", TimeCounting(conTouch));
     }
 }
예제 #2
0
 private void Awake()
 {
     sc         = this;
     coroutines = new Dictionary <string, IEnumerator>();
 }
예제 #3
0
 public void OutTouchArea()
 {
     StaticCorouting.Stop("TimeCounting");
     conTouch = null;
 }