mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 08:17:38 +02:00
Tap Trial: Player tap animation
This commit is contained in:
15
Assets/Scripts/Games/TapTrial/TapTrialPlayer.cs
Normal file
15
Assets/Scripts/Games/TapTrial/TapTrialPlayer.cs
Normal 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>();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user