コード例 #1
0
 private void ActionDown()
 {
     if (target != null)
     {
         if (target.GetComponent <InteractionObject>() != null)
         {
             InteractionObject interactionObject = target.GetComponent <InteractionObject>();
             interactionObject.DownAction();
         }
     }
 }