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