Exemplo n.º 1
0
 /// <summary>
 /// スワイプ開始
 /// </summary>
 private void OnStartedSwipe(SwipeEventData ev)
 {
     if (thruster)
     {
         thruster.ThrusterAwake();
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// 他のオブジェクトを検出
 /// </summary>
 private void OnDetect(DetectableObject2D obj)
 {
     //フィルター
     if (obj.tag.Equals(targetTag))
     {
         thruster.ThrusterAwake();
         target = obj.transform;
         weapon.WeaponAwake();
     }
 }