mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-13 08:37:37 +02:00
Simple tap
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
using RhythmHeavenMania.Util;
|
||||||
|
|
||||||
namespace RhythmHeavenMania.Games.TapTrial
|
namespace RhythmHeavenMania.Games.TapTrial
|
||||||
{
|
{
|
||||||
public class TapTrialPlayer : MonoBehaviour
|
public class TapTrialPlayer : MonoBehaviour
|
||||||
@ -11,5 +13,19 @@ namespace RhythmHeavenMania.Games.TapTrial
|
|||||||
{
|
{
|
||||||
anim = GetComponent<Animator>();
|
anim = GetComponent<Animator>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void Update()
|
||||||
|
{
|
||||||
|
if (PlayerInput.Pressed())
|
||||||
|
{
|
||||||
|
Tap(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Tap(bool hit)
|
||||||
|
{
|
||||||
|
Jukebox.PlayOneShotGame("tapTrial/tap");
|
||||||
|
anim.Play("Tap", 0, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user