Chataigne/Assets/Script/CameraManager.cs
Djalim Simaila 6a86813c8d CODE
Creation d'une zone runner
Correction de bug tel que la vie
2023-06-01 02:02:10 +02:00

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