Зациклена ли система частиц?
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Start() { ParticleSystem ps = GetComponent<ParticleSystem>(); var coll = ps.collision; coll.enabled = true; coll.bounce = new ParticleSystem.MinMaxCurve(0.5f); } }