390c807f6c
fix ipc touch not working bug; fix player height text not updating bug
20 lines
512 B
C#
20 lines
512 B
C#
using UnityEngine;
|
|
[RequireComponent(typeof(Camera))]
|
|
public class CameraSmooth : MonoBehaviour {
|
|
|
|
public Transform target;
|
|
public float smoothSpeed = 0.05f;
|
|
public int FPS = 60;
|
|
private void Start()
|
|
{
|
|
QualitySettings.vSyncCount = 0;
|
|
Application.targetFrameRate = FPS;
|
|
}
|
|
void Update ()
|
|
{
|
|
if (target == null) return;
|
|
transform.position = Vector3.Lerp(transform.position, target.position, smoothSpeed);
|
|
transform.rotation = Quaternion.Lerp(transform.rotation, target.rotation, smoothSpeed);
|
|
}
|
|
}
|