BITFALL/Assets/Artists/Scripts/HotFix/FPSCameraMotion.cs

18 lines
328 B
C#
Raw Normal View History

2024-02-21 01:40:53 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace BITFALL.HotFix
{
public class FPSCameraMotion : MonoBehaviour
{
private Animator _animator;
private void Start()
{
_animator = GetComponentInParent<Animator>();
}
}
}