Files
BITFALL/Assets/Artists/Scripts/HotFix/FPSCameraMotion.cs
CortexCore 0f47d7199d 1
2024-02-21 01:40:53 +08:00

18 lines
328 B
C#

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>();
}
}
}