how to make particle in unity
public ParticleSystem particles;
Instantiate(particles, transform.position, Quaternion.identity);
how to make particle in unity
public ParticleSystem particles;
Instantiate(particles, transform.position, Quaternion.identity);
unity set particle properties through script
//Example to set a Particle Systems Emission Rate over Time.
// Get the emission module.
var emissionModule = GetComponent<ParticleSystem>().emission;
// Enable it (if its not) and set a value
emissionModule.enabled = true;
emissionModule.rateOverTime = 20;
//V Check source for more examples V
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us