Stefan Wessels
Stefan Wessels
On Windows and Linux my game runs ar 60 FPS but on macOS (Sonoma on M2 Mini) the game runs at around 350 FPS. Is there a way to cap...
I don't want to see any output from aloevera unless there's an issue. I was able to achieve this with the following changes to src/bin/aloevera.rs, line 80+81: stdout_log_level: Level::Warn, file_log_level:...
In commands/imagesets/command.rs line 45 there is this: println!("{}, {}", args.frame_width, args.frame_height); If the loging is set lower (warn, for example), this print will still appear in the console which is...
One of aloevera's strengths is tripping me up. I don't use aloevera's timemap feature, I use Tiled for layout. I use aloevera as an image conversion tool. To lay out...
I just started taking a look at aloevera. The documentation hasn't been updated. For example in https://github.com/yeastplume/aloevera/blob/master/docs/ex_001.md, the basic program to set the palette has a line that refers to...
Pasting into an nk_edit_string will end up in nk_str_insert_at_char which, if the edit buffer is at capacity, will fail since an insert is not possible. But, if the edit mode...