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.
Xboxコントローラーでリングのどの部分が点灯するかを変更する方法があるかどうか誰か知っていますか? たとえば、プレーヤー 2 を表すために最初のコントローラーを接続する必要があります (プレーヤー 1 がキーボード/マウス入力の使用を選択した場合)。
ありがとう。
XInputRemap を使用して、接続されたコントローラーをそれらのコントローラーに関連付けられたユーザーに再マップします。これは XInput API の一部です。2 人のプレイヤーがいて、コントローラーを交換したい場合:
DWORD remap[XUSER_MAX_COUNT]; remap[0] = 1; remap[1] = 0; DWORD dwResult = XInputRemap(remap);
SDK には、この機能を示すサンプルが含まれています。