Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ゲームウィンドウの特定の部分に画像を描画できるように、X と Y の位置を見つけようとしていますが、これを行う方法がわかりません。ありがとうございます。
マウスの状態は、Microsoft.Xna.Framework.Inputにあるマウスクラスから取得できます。
MouseState mouseState = Mouse.GetState(); var x = mouseState.X; var y = mouseState.Y;