This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
station_obscurum_unity/Assets/Scripts/Player/EmoteHandler.cs
2023-06-15 11:15:01 -04:00

32 lines
643 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Player
{
public class EmoteHandler : MonoBehaviour
{
[SerializeField]
private Animator anim;
[SerializeField]
private string[] animations;
[SerializeField]
private int emoteNum = 0;
// Start is called before the first frame update
void Start()
{
PlayEmote();
}
public void PlayEmote()
{
anim.Play(animations[emoteNum]);
}
// Update is called once per frame
void Update()
{
}
}
}