18 lines
328 B
C#
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>();
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|