1.序章-家中 1)加入了后处理volume对象,添加了Bloom,轻微暗角与重新映射动态范围 2.序章-战场 1)加入了后处理volume对象,与一些色调色轮调整 2)(建议这个场景也加入爆炸声和屏幕震动,因为背景也有炮弹,现在太平静了) 3.第一关 1)加入了后处理volume对象,与一些色调色轮调整 2)修复了枪光的bug 4.第二关 1)加入了后处理volume对象,与一些色调色轮调整 2)加入了背景的炮火效果 3)加入了解决的两声枪响 5.在music effects文件夹里加入了不合适的音效的替代
28 lines
459 B
C#
28 lines
459 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Experimental.Rendering.Universal;
|
|
|
|
public class BackBoomController : MonoBehaviour
|
|
{
|
|
|
|
public Light2D BoomLight;
|
|
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
|
|
public void DesLight()
|
|
{
|
|
Destroy(gameObject);
|
|
}
|
|
}
|