raylib.R icon indicating copy to clipboard operation
raylib.R copied to clipboard

R bindings for raylib graphics library

Results 4 raylib.R issues
Sort by recently updated
recently updated
newest added

Examples additions: - 2D camera platformer `example_core_2d_camera_platformer` - basic screen manager `example_core_basic_screen_manager` - window flags `example_core_window_flags` Core mappings (added to make the examples possible): - `get_frame_time` - `get_screen_height` - `get_screen_to_world_2d`...

The hack of trying to replace all asserts with a global macro to something that R will handle does not work. The following R code will crash, instead of throwing...

`GetDroppedFiles()` changed to `LoadDroppedFiles()` `ClearDroppedFiles()` changed to `UnloadDroppedFiles()` It's not only a name change, the interface is different. It works with a `FilePathList` structure now, instead of raw strings.

1. Need to make a check either at R or C level, to make sure a window is active before drawing. 2. At the C-level, check arguments are the correct...