HeavenStudioPlus/Assets/Scripts/Games/Spaceball/Alien.cs

56 lines
1.5 KiB
C#
Raw Normal View History

2021-12-28 07:38:55 +00:00
using UnityEngine;
2022-03-14 14:21:05 +00:00
namespace HeavenStudio.Games.Scripts_Spaceball
2021-12-28 07:38:55 +00:00
{
public class Alien : MonoBehaviour
{
private Animator anim;
private double showBeat = 0;
2021-12-28 07:38:55 +00:00
private bool isShowing = false;
private bool isHiding = false;
2021-12-28 07:38:55 +00:00
const string IdleAnim = "AlienIdle";
const string SwingAnim = "AlienSwing";
const string ShowAnim = "AlienShow";
private void Awake()
2021-12-28 07:38:55 +00:00
{
anim = GetComponent<Animator>();
anim.Play(IdleAnim, 0, 0);
2021-12-28 07:38:55 +00:00
}
private void Update()
{
if (Conductor.instance.isPlaying && !isShowing && !isHiding)
2021-12-28 07:38:55 +00:00
{
anim.Play(SwingAnim, 0, Conductor.instance.GetLoopPositionFromBeat(0, 1f));
2021-12-28 07:38:55 +00:00
anim.speed = 0;
}
else if (!Conductor.instance.isPlaying && !isHiding)
2021-12-28 07:38:55 +00:00
{
anim.Play(IdleAnim, 0, 0);
2021-12-28 07:38:55 +00:00
}
if (isShowing)
{
2022-02-03 22:20:26 +00:00
float normalizedBeat = Conductor.instance.GetPositionFromBeat(showBeat, 1f);
if (!isHiding) anim.Play(ShowAnim, 0, normalizedBeat);
2021-12-28 07:38:55 +00:00
anim.speed = 0;
if (normalizedBeat >= 2)
{
isShowing = false;
}
}
}
public void Show(double showBeat, bool hide)
2021-12-28 07:38:55 +00:00
{
isShowing = true;
this.showBeat = showBeat;
isHiding = hide;
if (hide) anim.Play("AlienHide", 0, 0);
2021-12-28 07:38:55 +00:00
}
}
}