Search found 1 match
- Sun Mar 31, 2024 8:45 am
- Forum: TrackIR 5
- Topic: TrackIR 5 Unity C# SDK
- Replies: 3
- Views: 2622
Re: TrackIR 5 Unity C# SDK
For anybody else that runs into this, change the developer ID to 1001. I had the same issue, but I noticed that the ID was only an unsigned short, so I just brute forced it with this code: unsigned short ID = 0; do { result = NP_RegisterProgramProfileID(ID); if (result == NP_OK) std::cout << "R...