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.
マウス クラスを呼び出して GetState メソッドを使用してカーソルの位置を取得しようとしていますが、戻り値は常に 0,0 です。どこでも検索しましたが、すべてのコードは他の例でも同じように見えます。クラスを宣言する別の方法を試しましたが、同じ結果が得られます。
public void Update() { var ms = Mouse.GetState(); cursorPos = new Vector2(ms.X, ms.y); }