Commit ea3eab31 authored by 15박보승's avatar 15박보승

EdgeNote NoteHit 구현, EdgeNote HitEffect 추가

parent a8ffea3f
This source diff could not be displayed because it is too large. You can view the blob instead.
fileFormatVersion: 2
guid: d9a533cec04e2124e9c31541b4f63e72
folderAsset: yes
DefaultImporter:
guid: 5fea3dd5a73f8574aa47be477618f7ff
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
......
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(Light),typeof(ParticleSystem))]
public class BlinkLight : MonoBehaviour
{
public AnimationCurve curve;
private float t = 0;
private Light light;
private ParticleSystem effect;
public void Init(JudgeType type)
{
light = GetComponent<Light>();
effect = GetComponent<ParticleSystem>();
Color color = Color.white;
switch (type)
{
case JudgeType.Perfect:
color = Color.blue;
break;
case JudgeType.Hit:
color = Color.green;
break;
case JudgeType.Miss:
color = Color.red;
break;
}
light.color = color;
ParticleSystem.MainModule main = effect.main;
main.startColor = color;
}
private void Update()
{
light.intensity = 20 * curve.Evaluate(Mathf.PingPong((t += 5 * Time.deltaTime), 1));
}
}
fileFormatVersion: 2
guid: f34e15e0130ebaf469ab4474bb4914e4
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
......@@ -26,8 +26,11 @@ public class EdgeNoteObject : NoteObject
public override void NoteHit(JudgeResult type)
{
base.NoteHit(type);
PlayEngine.inst.HandleNoteJudge(type.type);
BlinkLight light = Instantiate(PlayEngine.inst.edgeHitEffectPrefab, -5 * direction, Quaternion.identity);
light.transform.LookAt(Vector3.zero);
light.Init(type.type);
Destroy(light.gameObject, 0.4f);
}
public override void SetPosition(float remainedTime)
......
......@@ -23,6 +23,7 @@ public class PlayEngine : SingletonBehaviour<PlayEngine>
public int test;
public List<GameObject> hitEffectPrefabs = new List<GameObject>();
public BlinkLight edgeHitEffectPrefab;
public AudioClip gunSfx;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment