Files
2024-09-22 21:45:37 +02:00

18 lines
265 BLFS
C#

using UnityEngine;
public class Particle: MonoBehaviour {
private void Start()
{
// Get the ParticleSystem component
ParticleSystem particleSystem = GetComponent<ParticleSystem>();
// Play the particle system
particleSystem.Play();
}
}