“Destrua a unidade GameObject” Respostas de código

Como destruir um objeto na unidade

Destroy(gameObject);
Envious Emu

Destrua a unidade GameObject

Destroy(this.gameObject);
A guy using his dad's PC

como destruir um objeto de games

Destroy(gameObject); // destroys the game object attached to the script
Depressed Dolphin

Destrua a unidade GameObject


void OnTriggerEnter()
{
    if(PlayerPrefs.GetInt("GotPotion", 0) == 0)
    {
        // You didn't get the potion yet, so get it
        Destroy(gameObject);
        PlayerPrefs.SetInt("GotPotion", 1); // got the potion
    }
}

Powerful Platypus

Respostas semelhantes a “Destrua a unidade GameObject”

Perguntas semelhantes a “Destrua a unidade GameObject”

Mais respostas relacionadas para “Destrua a unidade GameObject” em C#

Procure respostas de código populares por idioma

Procurar outros idiomas de código