简单的Unity角色控制器问题
我正在制作 2D 平台游戏,为了使角色移动,我使用这个 无效更新() { move = Input.GetAxis("水平"); rb.velocity = new Vector2(move * speed, rb.velocity.y); } 但当我...