turnOffAllParticles()

private void turnOffAllParticles()
    {
        foreach (GameObject particle in particleSystems)
        {
            particle.SetActive(false);
        }
    }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *