Alka icon indicating copy to clipboard operation
Alka copied to clipboard

Simple, fast, easy to get started mid-level game engine written in Zig

Results 4 Alka issues
Sort by recently updated
recently updated
newest added

ECS StoreComponent, cannot use dynamic UniqueList. For some reason after some `UniqueList(T).append` it just resets the old ones data and repeats that cycle infinitely. Forced to use fixed array list...

bug

```zig fn draw() !void { // lets say this text box needs to be rendered at the top off all of the others { var tr_button = m.Transform2D{ .position =...

enhancement

SFML viewports is really good tool to have in an engine. For example [use case](https://www.sfml-dev.org/tutorials/2.5/graphics-view.php) Currently there is no design for implementation.

enhancement

Cannot set the window icon. (see: [code](https://github.com/Kiakra/Alka/blob/6818cc4589ed679207dd574335b8187dccd18c0d/src/core/window.zig#L175)) (this is not the exact code, but it produces the bug) ```zig pub fn main() !void { var gpa = std.heap.GeneralPurposeAllocator(.{}){}; const callbacks...

bug