Answers for "start a particle effect when a button is pushed"

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

Code answers related to "start a particle effect when a button is pushed"

C# Answers by Framework

Browse Popular Code Answers by Language