Answers for "how to play particle system unity at point"

C#
4

unity play particle system

public ParticleSystem particles;

//Play, stop and pause particles with these:

particles.Play();

particles.Stop();

particles.Pause();
Posted by: Guest on June-14-2021
1

how to make particle in unity

public ParticleSystem particles;
Instantiate(particles, transform.position, Quaternion.identity);
Posted by: Guest on September-03-2021

C# Answers by Framework

Browse Popular Code Answers by Language