private void OnTriggerEnter(Collider other)
    {
        if ((other.GetComponentInChildren <TagFish>()) && (ScriptGlobalVariables.player.
                                                           GetComponentInChildren <ScriptDolphinStomach>().CanEatStuff()))
        {
            ScriptDolphinStomach dolphin_stomach = ScriptGlobalVariables.player.
                                                   GetComponentInChildren <ScriptDolphinStomach>();

            GameObject root_fish = other.transform.parent.gameObject;

            ScriptFishNutritionalValue nutritional_value = root_fish.GetComponentInChildren <ScriptFishNutritionalValue>();

            mordida.GetComponent <AudioSource>().Play();

            dolphin_stomach.AteStuff(nutritional_value.fish_nutritional_value);

            Destroy(root_fish);
        }
    }
Пример #2
0
    // Use this for initialization
    void Start()
    {
        GameObject player = GameObject.FindGameObjectWithTag("Player");

        dolphin_stomach = player.GetComponentInChildren <ScriptDolphinStomach>();
    }