Sarah Woodie
Sarah Woodie
I think FOV should be easily configurable for new users. Right now changing FOV requires modifying a line in `main.c` in the function `handle_input`. It would be a nice change...
There are warnings inside this library that say Std.is is deprecated. I see no reason not to switch all references to Std.is to Std.isOfType.
I think the OpenGL renderer could benefit from a bit of cleanup. It would make it easier to maintain, fix bugs, and add new features. There are a few things...
Using a build system like CMake or SCons would allow more building options and integration. It would also help newer users build and contribute the library. CMake is more standard...
I wrote a simple evdev program to read from a Nintendo Switch JoyCon and print out any buttons pressed. ``` from evdev import InputDevice, categorize, ecodes, KeyEvent device = InputDevice("/dev/input/event17")...