gpt4 book ai didi

c# - 当我向后走时,第三人称视角的相机卡顿

转载 作者:行者123 更新时间:2023-11-30 22:54:32 26 4
gpt4 key购买 nike

我有第三人称代码,但当我向后走时,相机卡顿了!有没有人有办法解决吗?相机与播放器分离,播放器根据相机的视角旋转。

PlayerController.cs

if (Input.GetKey (KeyCode.LeftShift)) {
if(Input.GetKey(KeyCode.W) || Input.GetAxis ("Vertical") > 0) moveDirection += camera.forward;
if(Input.GetKey(KeyCode.S) || Input.GetAxis ("Vertical") < 0) moveDirection += -camera.forward;
if(Input.GetKey(KeyCode.A) || Input.GetAxis ("Horizontal") < 0) moveDirection += -camera.right;
if(Input.GetKey(KeyCode.D) || Input.GetAxis ("Horizontal") > 0) moveDirection += camera.right;

if (Input.GetAxis ("Horizontal") != 0 || Input.GetAxis ("Vertical") != 0) {
//Multiply it by speed.
moveDirection.Normalize ();
moveDirection *= run;
//Applying gravity to the controller
moveDirection.y -= gravity * Time.deltaTime;
//Making the character move
controller.Move (moveDirection * Time.deltaTime);
}
moveDirection.y = 0f;
if (moveDirection != Vector3.zero) {
transform.rotation = Quaternion.RotateTowards (transform.rotation, Quaternion.LookRotation (moveDirection), rotationSpeed * Time.deltaTime);
}
}

相机.cs

// Update is called once per frame
void Update () {

// We setup the rotation of the sticks here
float inputX = Input.GetAxis ("RightStickHorizontal");
float inputZ = Input.GetAxis ("RightStickVertical");
mouseX = Input.GetAxis ("Mouse X");
mouseY = Input.GetAxis ("Mouse Y");
finalInputX = inputX + mouseX;
finalInputZ = inputZ - mouseY;

rotY += finalInputX * inputSensitivity * Time.deltaTime;
rotX += finalInputZ * inputSensitivity * Time.deltaTime;

rotX = Mathf.Clamp (rotX, -clampAngle, clampAngle);

Quaternion localRotation = Quaternion.Euler (rotX, rotY, 0.0f);
transform.rotation = localRotation;


void LateUpdate () {
CameraUpdater ();
}

void CameraUpdater() {
Transform target = CameraFollowObj.transform;
// set the target object to follow

//move towards the game object that is the target
float step = CameraMoveSpeed * Time.fixedDeltaTime;
transform.position = Vector3.MoveTowards (transform.position, CameraFollowObj.transform.position, step);
}

最佳答案

根据我的经验,如果你的相机流畅但会卡顿,那是因为相机 - 一旦它达到了速度 - 移动的速度比它跟随的物体快:

问题

  1. 物体移动
  2. 相机开始慢慢移向物体
  3. 它追上并停下来
  4. 相机开始慢慢移向物体
  5. 重复 2-4;口吃行为

解决方案

简单; 调整相机速度变量,以确保当物体移动时它永远不会完全 catch ,而是停留在后面,这样它就不必每隔几帧就停下来。



额外阅读 Material

其他消息来源通常会解释他们的解决方案是错误地将代码放入 FixedUpdate 以奇迹般地摆脱卡顿行为。有时从这样做得到正确的行为是由于一系列的事情:

  • Update 在每次帧更新时运行,因此此处的时间步长 (Time.deltaTime) 取决于机器,但在我的机器上,平均每 0.007 秒一次。
  • FixedUpdate 在固定的时间步长上运行,标准是 0.002,但可以在设置中更改。
  • 代码:float step = CameraMoveSpeed * Time.deltaTime;为了简单的数学计算,我们假设 CameraMoveSpeed 为 1。

因此,根据这些数字,我们可以理解将代码放入 Update 会产生以下结果

更新

每 0.007 秒,我们用 CameraMoveSpeed * 0.007 更新相机 lerp tick

固定更新

每 0.02 秒,我们用 CameraMoveSpeed * 0.007 更新相机 lerp tick

结果

它们每次移动相同的长度,但在 FixedUpdate 中,ticks 的频率较低,这导致相机平滑速度较慢,因此“解决”了描述为对这篇文章的回答的问题,在某种程度上,调整相机速度变量以获得较慢的相机跟随,但您没有调整变量,而是将代码移动到物理更新而不是帧更新,您只是偶然解决了这个问题,而没有了解原因。

关于c# - 当我向后走时,第三人称视角的相机卡顿,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56204176/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com