当摄像机移动时,场景中除玩家外的所有内容看起来都很模糊 |统一2D



我使用一个简单的相机跟随脚本开始我的游戏,该脚本只在x轴上跟随我的玩家,带有偏移和一些限制

我在我的机器人上录制了一个视频来表达我的意思。在录制中,问题有点夸张(由于录制),并且只有在峰值进入视图后才能看到。不录制时,播放器动画非常流畅。这是视频

using UnityEngine;
public class MainCamera : MonoBehaviour {
public Transform target;
public float xOffset, xPosRestrictionMin, xPosRestrictionMax;
private float yPos, zPos;
void Start ()
{
yPos = transform.position.y;
zPos = transform.position.z;
}
void LateUpdate ()
{
transform.position = new Vector3(Mathf.Clamp(target.position.x + xOffset, xPosRestrictionMin, xPosRestrictionMax), yPos, zPos);
}
}

然而,当第一次运行游戏时,一切看起来都很"紧张"。尽管我所有的玩家物理都在固定更新中,但更新中的输入和相机更新都在后期更新中。我尝试设置插值以推断玩家刚性车身2d。现在,玩家的外观和动画效果会很流畅,但当摄像机移动时,其他一切都看起来很模糊。我想可能是我的脚本或设置有问题,所以我尝试关闭 vsync,将目标帧速率设置为 60,当没有任何效果时,我下载了 Cinemachine。即使使用电影机而不是我自己的脚本,它看起来仍然很模糊,我不知道为什么。这是我控件的简化版本。

private void Update()
{
//Handle touch input
if (Input.touchCount > 0)
{
foreach (Touch touch in Input.touches)
{
switch (touch.phase)
{
// Touchdown
case TouchPhase.Began:
if (onGround || !doubleJumped)
{
jump = true;
touchReleased = false;
if (onGround)
anim.SetBool("jump", true);
}
break;
//Touch up
case TouchPhase.Ended:
allowGlide = false;
anim.SetBool("glide", false);
if (rb.velocity.y > 0)
touchReleased = true;
break;
}
}
}
}

void FixedUpdate()
{
rb.velocity = new Vector2(newMoveSpeed, rb.velocity.y);
onGround = Physics2D.OverlapCircle(groundCheck.position, groundCheckRadius, whatIsGround);
if (onGround && !jump)
{
gliding = false;
allowGlide = false;
anim.SetBool("glide", false);
anim.SetBool("jump", false);
doubleJumped = false;
}
//Slowly Accelerate if not at top speed and touching the ground
if (newMoveSpeed < moveSpeed && onGround)
newMoveSpeed += 0.0165f;
anim.speed = Mathf.Clamp(newMoveSpeed, 13, 18);
//Jumping 
if (jump && onGround)
{
jump = false;
rb.velocity = new Vector2(rb.velocity.x, jumpHeight);
}
else if (jump && !doubleJumped && !onGround)
{
jump = false;
doubleJumped = true;
allowGlide = true;
rb.velocity = new Vector2(rb.velocity.x, jumpHeight);
}
//Add multiplier if falling down
if (rb.velocity.y < 0 && allowGlide)
{
anim.SetBool("glide", true);
if (!gliding)
{
rb.velocity -= Vector2.up * Physics2D.gravity.y;
gliding = true;
}
else
{
rb.velocity += Vector2.up * Physics2D.gravity.y * (glideMultiplier - 1) * Time.deltaTime;
}
}
else if (rb.velocity.y < 0)
{
rb.velocity += Vector2.up * Physics2D.gravity.y * (fallMultiplier - 1) * Time.deltaTime;
}
//Increase fall multiplier if touch is released mid jump
else if (rb.velocity.y > 0 && touchReleased)
{
rb.velocity += Vector2.up * Physics2D.gravity.y * (lowJumpMultiplier - 1) * Time.deltaTime;
}
else if (rb.velocity.y == 0)
{
return;
}
}

谢谢,任何帮助或反馈不胜感激!

您是否检查过设备上运行的游戏的帧速率?我有电影/动画背景(但对 Unity 很陌生),在我看来,您遇到了帧速率问题。虽然,如果录音软件完全改变了图形,我不确定我看到的和你一样。为什么您的录音软件会这样做?你试过使用 Rec 吗?它对我来说效果很好。

很抱歉没有将其作为评论发布 - 我当前的代表不允许我这样做。

也许我认为这会导致设备中的录音出现问题,这可能会占用一些计算能力并导致问题,同样的事情发生在只是播放而不是录音时吗?

相关内容

  • 没有找到相关文章

最新更新