Start CCollidableAABox, add CPlayerCameraBob

Former-commit-id: 749dec6b1e
This commit is contained in:
2023-01-09 22:51:58 -08:00
parent 6d153e758c
commit 1e03f02289
17 changed files with 392 additions and 112 deletions

View File

@@ -0,0 +1,15 @@
#ifndef _NORMALTABLE
#define _NORMALTABLE
#include "Kyoto/Math/CVector3f.hpp"
static const CVector3f normalTable[6] = {
CVector3f(-1.f, 0.f, 0.f),
CVector3f(1.f, 0.f, 0.f),
CVector3f(0.f, -1.f, 0.f),
CVector3f(0.f, 1.f, 0.f),
CVector3f(0.f, 0.f, -1.f),
CVector3f(0.f, 0.f, 1.f),
};
#endif // _NORMALTABLE