Tap Trial: Player tap animation

This commit is contained in:
Braedon
2022-02-19 16:03:45 -05:00
parent 00ba7dd3b7
commit bef5518b8f
30 changed files with 9638 additions and 36 deletions

View File

@ -0,0 +1,15 @@
using UnityEngine;
namespace RhythmHeavenMania.Games.TapTrial
{
public class TapTrialPlayer : MonoBehaviour
{
[Header("References")]
[System.NonSerialized] public Animator anim;
private void Start()
{
anim = GetComponent<Animator>();
}
}
}