From 567d384b698151e287e31140709c93f1b92e6db4 Mon Sep 17 00:00:00 2001 From: omniscient <17525998+omnisci3nce@users.noreply.github.com> Date: Tue, 13 Aug 2024 20:29:27 +1000 Subject: loading joints and animations --- src/physics.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/physics.h') diff --git a/src/physics.h b/src/physics.h index 3485d1b..134f08b 100644 --- a/src/physics.h +++ b/src/physics.h @@ -29,16 +29,16 @@ void physics_system_update(physics_world* phys_world, f64 deltatime); /** @brief Oriented Bounding Box */ typedef struct OBB { - Vec3 center; - Bbox_3D bbox; - Quat rotation; + Vec3 center; + Bbox_3D bbox; + Quat rotation; } OBB; PUB void Debug_DrawOBB(OBB obb); /** @brief generic collider structure */ typedef struct Collider { - u64 id; // ? Replace with handle? - OBB shape; // NOTE: We're only supporting the one collider type for now + u64 id; // ? Replace with handle? + OBB shape; // NOTE: We're only supporting the one collider type for now bool on_ground; } Collider; -- cgit v1.2.3-70-g09d2