21 lines
401 B
C#
21 lines
401 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class CameraManager : MonoBehaviour
|
|
{
|
|
[SerializeField] GameObject playerRef;
|
|
Vector3 ref_Velocity = Vector3.zero;
|
|
float smoothTime = 0.2f;
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
}
|
|
}
|