fixes for physics

This commit is contained in:
2026-03-17 01:01:10 +02:00
parent f3ed144fb5
commit 0a506f7185
24 changed files with 179 additions and 74 deletions

View File

@@ -16,11 +16,20 @@ struct FunnyMaterial_t
struct FunnyMesh_t
{
float *m_pfPositions;
uint32_t m_nPositionCount;
uint32_t *m_puIndicies;
uint32_t m_nIndiciesCount;
};
struct FunnyPhysics_t
{
HShape m_hShape;
union
{
HFunnyMesh m_hMesh;
};
};
struct FunnyModel_t