Unity笔记(8):Use Particle System【粒子系统】

1、创建新项目 

Unity笔记(8):Use Particle System【粒子系统】_第1张图片

2、导入素材 

Unity Particle Pack | Tutorial Projects | Unity Asset Store

Unity笔记(8):Use Particle System【粒子系统】_第2张图片 3、场景中创建一个物体

Unity笔记(8):Use Particle System【粒子系统】_第3张图片

4、 给球体添加一个新脚本

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Boom : MonoBehaviour
{
    public float delay = 3f;//爆炸前延时时间

    float countdown;//倒计时

    bool hasExploded = false;//确认是否爆炸

    public GameObject explosionEffect;

    void Start()
    {
        countdown = delay;
    }

    // Update is called once per frame
    void Update()
    {
        countdown -= Time.deltaTime;
        if (countdown <= 0f&&!hasExploded)
        {
            Explode();
            hasExploded = true;
        }
    }
    //爆破函数
    void Explode()
    {
        //显示爆炸效果
        Instantiate(explosionEffect, transform.position, transform.rotation);//实例化爆炸效果
        Destroy(gameObject);
    }
}

5、添加爆炸粒子

Unity笔记(8):Use Particle System【粒子系统】_第4张图片

6、取消循环播放

Unity笔记(8):Use Particle System【粒子系统】_第5张图片

最终效果

 Unity笔记(8):Use Particle System【粒子系统】_第6张图片

 参考视频:

https://youtu.be/BYL6JtUdEY0

 

你可能感兴趣的:(#,Unity实战教程,unity,游戏引擎)