This commit is contained in:
2026-03-24 10:23:05 +05:45
parent 739a806493
commit 5bc235f1ab
9 changed files with 335 additions and 303 deletions
+1 -9
View File
@@ -74,15 +74,7 @@ handle_entity_mode :: proc(
if is_key_pressed(state, glfw.MOUSE_BUTTON_LEFT)
{
aabb : b2.AABB = {mpos, mpos + 1}
r := b2.World_OverlapAABB(
level.engine.world_id,
aabb,
b2.DefaultQueryFilter(),
click_query_filter,
game,
)
r := b2.World_OverlapAABB(level.engine.world_id, aabb, b2.DefaultQueryFilter(), click_query_filter, game)
}
else if is_key_pressed(state, glfw.MOUSE_BUTTON_RIGHT)
{