barsoosayque

Results 5 issues of barsoosayque

Consider the following example: ```cpp Log::SetLevel(LogLevel::Verbose); Log::Connect("rare", [](const LogEntry& entry) { std::printf("[rare] %s\n", entry.Message.c_str()); }); Log::Connect("legendary", [](const LogEntry& entry) { std::printf("[legendary] %s\n", entry.Message.c_str()); }); Log::Connect([](const LogEntry& entry) { std::printf("[common] %s\n",...

Basically the issue is that I prefer to store assets in *data* or *content* (lowercase) directory, but it is not possible since the path of assets is hard-coded. As for...

Won't be hard since Oboe actually provides API to gather audio input.

I needed a way to toggle debug rendering of colliders for group of entities in my project, so I thought of implementing it kind of like bevy `Wireframe` works, with...

enhancement
D-Medium
P-Medium
A-Integration

I'm using **startin** as a tool to generate meshes for terrain in runtime, and so my editor tools can both add and remove vertices. I was thinking about collecting garbage...