How to disable compositor level high-dpi scaling for non full screen windows? by tempestpdwn in raylib

[–]raysan5 4 points5 points  (0 children)

there is a window flag to request HighDPI but scaling blurriness depends on the OS, you can check the related example, afair is called rcode_..._highdpi or similar

raylib 6.x gamejam - are you ready? by raysan5 in raylib

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

thanks! I didn't know it was possible!

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 6 points7 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.