twinStick/twinStickCrawler/Assets/Scripts/Creatures/Animate.cs
2024-12-19 12:36:55 +01:00

24 lines
500 B
C#

using Unity.VisualScripting;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Animate : MonoBehaviour
{
[SerializeField]
private InputManager _inputManager;
private GameObject _cameraGameObject;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
_cameraGameObject = Camera.main.GameObject();
}
// Update is called once per frame
void Update()
{
}
}