Beispiel #1
0
    private void OnTriggerEnter(Collider other)
    {
        // Get the Actor class
        Actor actor = other.gameObject.GetComponent <Actor>();

        if (actor != null)
        {
            if (actor.gameObject.tag == "Ammo" && gameObject.tag == "Ammo")
            {
                // Check to see if the cannon is already loaded so that you don't override the current load
                if (cannonController.IsCannonBallLoaded)
                {
                    // Play Wonk SE
                    return;
                }

                // Pass to the cannon the weight and ammo type
                cannonController.LoadCannonBall(actor.actorName);

                // Desctory the object as it's no longer needed
                actor.DestroyObject(0);
            }
            else if (actor.gameObject.tag == "Powder" && gameObject.tag == "Powder")
            {
                // Add the powder to the cannon
                cannonController.AddPowder(actor.weight);

                // Desctory the object as it's no longer needed
                actor.DestroyObject(0);
            }
            else
            {
                // Play Wonk SE
                return;
            }
        }
    }
Beispiel #2
0
 private void LoadCB()
 {
     cannonController.LoadCannonBall(cannonBall);
 }