第一步 取消勾选lopping
第二步 取消勾选Play on Awake
第三步 编写代码 (注意:类的名字要跟代码文件命名一致)
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Particle : MonoBehaviour { public ParticleSystem p; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { if (Input.GetMouseButtonDown(0)) { p.Play(); } } }
最后 ctrl + s 保存 就可以