mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
37 lines
905 B
C#
37 lines
905 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using HeavenStudio.Util;
|
||
|
|
||
|
namespace HeavenStudio.Games.Scripts_SneakySpirits
|
||
|
{
|
||
|
public class SneakySpiritsGhostDeath : MonoBehaviour
|
||
|
{
|
||
|
public string animToPlay;
|
||
|
public float startBeat;
|
||
|
public float length;
|
||
|
[SerializeField] Animator anim;
|
||
|
|
||
|
void Awake()
|
||
|
{
|
||
|
anim = GetComponent<Animator>();
|
||
|
}
|
||
|
|
||
|
void Update()
|
||
|
{
|
||
|
var cond = Conductor.instance;
|
||
|
if (cond.isPlaying && !cond.isPaused)
|
||
|
{
|
||
|
float normalizedBeat = Mathf.Max(cond.GetPositionFromBeat(startBeat, length), 0f);
|
||
|
anim.DoNormalizedAnimation(animToPlay, normalizedBeat);
|
||
|
if (normalizedBeat > 1)
|
||
|
{
|
||
|
Destroy(gameObject);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|