mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
7ed0e3fafc
* Ringside fixes * Clappy Trio bop logic fix * Quiz show answer reaction fix * prequel background begone! * You can now hide the alien in spaceball * Fixed lightning toss jank * btsds recolor, need to add lights next * Btsds lights and recolor * fixed sweat particle rendering over reporter * Asset bundles accomodation
56 lines
No EOL
1.5 KiB
C#
56 lines
No EOL
1.5 KiB
C#
using UnityEngine;
|
|
|
|
namespace HeavenStudio.Games.Scripts_Spaceball
|
|
{
|
|
public class Alien : MonoBehaviour
|
|
{
|
|
private Animator anim;
|
|
|
|
private float showBeat = 0;
|
|
private bool isShowing = false;
|
|
private bool isHiding = false;
|
|
|
|
const string IdleAnim = "AlienIdle";
|
|
const string SwingAnim = "AlienSwing";
|
|
const string ShowAnim = "AlienShow";
|
|
|
|
private void Awake()
|
|
{
|
|
anim = GetComponent<Animator>();
|
|
anim.Play(IdleAnim, 0, 0);
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (Conductor.instance.isPlaying && !isShowing && !isHiding)
|
|
{
|
|
anim.Play(SwingAnim, 0, Conductor.instance.GetLoopPositionFromBeat(0, 1f));
|
|
anim.speed = 0;
|
|
}
|
|
else if (!Conductor.instance.isPlaying && !isHiding)
|
|
{
|
|
anim.Play(IdleAnim, 0, 0);
|
|
}
|
|
|
|
if (isShowing)
|
|
{
|
|
float normalizedBeat = Conductor.instance.GetPositionFromBeat(showBeat, 1f);
|
|
if (!isHiding) anim.Play(ShowAnim, 0, normalizedBeat);
|
|
anim.speed = 0;
|
|
|
|
if (normalizedBeat >= 2)
|
|
{
|
|
isShowing = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
public void Show(float showBeat, bool hide)
|
|
{
|
|
isShowing = true;
|
|
this.showBeat = showBeat;
|
|
isHiding = hide;
|
|
if (hide) anim.Play("AlienHide", 0, 0);
|
|
}
|
|
}
|
|
} |