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
{{ message }}
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
With comfy 0.4.0, using the following code, nothing is printed when pressing spacebar. This bug doesn't exist in 0.3.1.
use comfy::*;simple_game!("Bug Repro", setup, update);fnsetup(_c:&mutEngineContext){}pubfnupdate(_c:&mutEngineContext){ifis_key_down(KeyCode::Space){println!("Space is down");}ifis_key_pressed(KeyCode::Space){println!("Space was pressed");}}
With comfy 0.4.0, using the following code, nothing is printed when pressing spacebar. This bug doesn't exist in 0.3.1.
Platform: macOS 14.5 (Sonoma)
Rust version: 1.78.0
I haven't tested other platforms.
Let me know if there's anything else I can provide.
The text was updated successfully, but these errors were encountered: