Answers for "how to make paricles play on clikc unity"

C#
0

start a particle effect when a button is pushed

public ParticleSystem particles;

if (Input.GetKeyDown("a")){
	particles.Play();
}
Posted by: Guest on April-28-2020

C# Answers by Framework

Browse Popular Code Answers by Language