예제 #1
0
 void AnimateManeuveringThrusters(thrusters myThruster, bool status)
 {
     thrusterToComponent[myThruster].onOff = status;
 }
예제 #2
0
    public void SetDrag(thrusters myThruster, bool status)
    {
        thrusterToBool[myThruster].myOnOff = status;

        //Debug.Log(thrusterToBool[myThruster].myName + " is set to " + thrusterToBool[myThruster].myOnOff);
    }
예제 #3
0
 public void CallRPCManThstAnim(thrusters myThruster, bool status)
 {
     photonView.RPC("AnimateManeuveringThrusters", PhotonTargets.All, myThruster, status);
 }