Unity中实现鼠标点击一下粒子系统播放一下

第一步 取消勾选lopping

Unity中实现鼠标点击一下粒子系统播放一下

 第二步  取消勾选Play on Awake

Unity中实现鼠标点击一下粒子系统播放一下

 第三步 编写代码 (注意:类的名字要跟代码文件命名一致)

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 保存   就可以

上一篇:OushuDB 如何安装与升级


下一篇:SaaS 系统架构设计经验总结