2

所以我对 XNA 很陌生,但我已经知道如何创建一个相机对象并控制它。我想为我的相机提供一些更直观的控件,因为当光标使用以下代码击中屏幕边缘时,旋转停止。这有点不直观。

我希望能够将光标的位置重置到屏幕中间,我该怎么做?

MouseState mouseState = Mouse.GetState();

yaw -= (mouseState.X - oldx) / 600.0f;
pitch -= (mouseState.Y - oldy) / 600.0f;

oldx = mouseState.X;
oldy = mouseState.Y;
4

1 回答 1

4

要将鼠标位置设置为屏幕中间:

Mouse.SetPosition(GraphicsDevice.Viewport.Width / 2, GraphicsDevice.Viewport.Height / 2);

您可以在Riemers XNA 教程中看到一个示例。

于 2012-04-22T00:02:52.923 回答