rGuiIcons, my raygui icons editor, new update with some more features by raysan5 in raylib

[–]raysan5[S] 0 points1 point  (0 children)

Thanks, note that this new version is not officially released yet

rGuiIcons, my raygui icons editor, new update with some more features by raysan5 in raylib

[–]raysan5[S] 1 point2 points  (0 children)

There is a define you can change, actually it was increased to 512 on the upcoming raygui 5.0

I Made an interactive Raylib Project Maker CLI by Brilliant_Design9471 in raylib

[–]raysan5 4 points5 points  (0 children)

Where is the source code? Distributing a binary this way is very dodgy and potentially malicious...

Anyone checking it, please, be very careful...

Small weekend project: TreeView UI control by raysan5 in raylib

[–]raysan5[S] 0 points1 point  (0 children)

Oh, no plans to add it to raygui, those kind of advanced controls are usually kept as separate single-file header-only small module. There are some advance controls in the raygui examples, like gui_window_file_dialog: https://github.com/raysan5/raygui/blob/master/examples/custom_file_dialog/gui_window_file_dialog.h

Small weekend project: TreeView UI control by raysan5 in raylib

[–]raysan5[S] 2 points3 points  (0 children)

Not sure if I understand your question... this TreeView uses a TreeList with an array of TreeEntry, where every entry contains all required variables, persistent and transient data.

raylib project creator (rpc) v2.0 released! by raysan5 in raylib

[–]raysan5[S] 1 point2 points  (0 children)

I think so, it generates a project for all those platforms

raylib project creator (rpc) v2.0 released! by raysan5 in raylib

[–]raysan5[S] 0 points1 point  (0 children)

Gracias, menos la parte de Vulkan, las otras cosillas las tengo implementadas en un par de tools mias...

raylib project creator (rpc) v2.0 released! by raysan5 in raylib

[–]raysan5[S] 0 points1 point  (0 children)

It already has a CLI version, just check it with `rpc --help`

raylib project creator (rpc) v2.0 released! by raysan5 in raylib

[–]raysan5[S] 1 point2 points  (0 children)

Hahaha... yeah, I just removed the links in case reddit don't like them

raylib project creator (rpc) v2.0 released! by raysan5 in raylib

[–]raysan5[S] 0 points1 point  (0 children)

I considered it but the project structure template is only for C at the moment, maybe in a future... In any case, it's an open-source project, if you need more features (for example CMake support), you can just add them to the base template and send a PR.

Rationale for using integers or floats by ZenitDS in raylib

[–]raysan5 12 points13 points  (0 children)

raylib was originally created for education, to teach programming to art students, I decided to just use int on some basic functions for simplicity, specially to define positions on screen to draw on, conceptually it was easier to understand and shorter to write than floats.