Exemplo n.º 1
0
        void OnTriggerEnter(Collider inOther)
        {
            if (null == player)
            {
                InitData();
            }             // if

            if (("ExtraLife" != inOther.tag) &&
                ("Key" != inOther.tag) &&
                ("Dime" != inOther.tag) &&
                ("Health" != inOther.tag))
            {
                return;
            }             // if

            if ("ExtraLife" == inOther.tag)
            {
                GLOBALS.gameController.guiManager.AddLife(GLOBALS.gameController.GetSpawnedPlayer());
            }             // if
            else if ("Key" == inOther.tag)
            {
                playerScript.AddKey();
            }             // else if
            else if ("Dime" == inOther.tag)
            {
                playerScript.AddDime();
            }             // else if
            else if ("Health" == inOther.tag)
            {
                playerScript.AddHealth();
            }     // else if
            Destroy(inOther.gameObject);
        }         // OnTriggerEnter