其他分享
首页 > 其他分享> > Unity中实现鼠标点击一下粒子系统播放一下

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

作者:互联网

第一步 取消勾选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 保存   就可以

标签:粒子系统,鼠标,frame,System,Update,Start,Unity,Collections,using
来源: https://blog.csdn.net/weixin_53270267/article/details/120338754