You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After building CSFML locally and using this DLL instead of the one from Nuget the code started to work as expected, updating the controller status without needing to call Joystick.Update(). But if I go back to the Nuget version of SFML it stops working again.
I'll try to investigate this a bit more over the weekend, but it looks somehow related to CSFML Nuget package.
After taking a look at the build file for CSFML Nuget package, I noticed that the package is linking statically to SFML. After building it statically I was able to reproduce the error.
Since this is clearly related to CSFML I'll open this issue over there.
eXpl0it3r
changed the title
Joystic won't update without Joystick.Update() even when calling window.DispatchEvents()
Joystick won't update without Joystick.Update() even when calling window.DispatchEvents()
Jun 15, 2023
Despite polling window events the Joystick status is not updated unless explicitly calling Joystick.Update().
Minimal working sample (with one joystick connected):
Expected result: One joystick is connected
Actual result: No joystick connected
Calling
Joystick.Update
before the loop will update the joystick status and will achieve the desired result.The same applies to actually getting the Joystick state:
Expected behavior: Axis position gets tracked accordingly to controller
Actual behavior: All axis values stuck
Again, calling Joystick.Update() inside the event loop will update the values correctly.
IDE: Visual Studio 2019
.Net SDK: .NET Core 3.1.301
Platform: x64
Configuration: Debug
OS: Windows 10
The text was updated successfully, but these errors were encountered: