Add CAmbientAI, just needs Think implmented

Former-commit-id: b8d23f2ff6
This commit is contained in:
2022-10-20 08:43:17 -07:00
parent 984417bd3c
commit 8846b1df1b
8 changed files with 228 additions and 21 deletions

View File

@@ -23,8 +23,10 @@ struct SMoverData {
CAxisAngle x24_;
float x30_mass;
SMoverData(float mass, const CVector3f& velocity, const CAxisAngle& angularVelocity,
const CVector3f& momentum, const CAxisAngle& unk)
SMoverData(float mass, const CVector3f& velocity = CVector3f::Zero(),
const CAxisAngle& angularVelocity = CAxisAngle::Identity(),
const CVector3f& momentum = CVector3f::Zero(),
const CAxisAngle& unk = CAxisAngle::Identity())
: x0_velocity(velocity)
, xc_angularVelocity(angularVelocity)
, x18_momentum(momentum)