From e5acfb329827802fe2259f91701dc8762c2573b6 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 8 Aug 2025 12:48:10 -0600 Subject: Mesh instancing test working --- src/world.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/world.h') diff --git a/src/world.h b/src/world.h index fc84ca3..21e4c4c 100644 --- a/src/world.h +++ b/src/world.h @@ -58,12 +58,12 @@ struct World { BVHNode bvh; // Transforms for mesh instancing. - Matrix utilityPoleTransforms[WORLD_UTILITY_POLE_COUNT]; + Matrix* utilityPoleTransforms; int bvhDebugSelect; }; -World createWorld(Seed seed); +World createWorld(Seed seed, const Assets* assets); void updateWorld(World* world, Game* game); void freeWorld(World world); // Dam, I wanta live in a free world ): -- cgit v1.2.3