diff options
author | aap <aap@papnet.eu> | 2019-07-08 21:37:47 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-07-08 21:37:47 +0200 |
commit | 2ae112fdf6b90bb4435dba34bcc2a23604e1e158 (patch) | |
tree | 5137e9ee1d2b01cd1a125409f1cb23a92a142d9f /src/entities/Physical.h | |
parent | little changes; one more function of CAutomobile (diff) | |
download | re3-2ae112fdf6b90bb4435dba34bcc2a23604e1e158.tar re3-2ae112fdf6b90bb4435dba34bcc2a23604e1e158.tar.gz re3-2ae112fdf6b90bb4435dba34bcc2a23604e1e158.tar.bz2 re3-2ae112fdf6b90bb4435dba34bcc2a23604e1e158.tar.lz re3-2ae112fdf6b90bb4435dba34bcc2a23604e1e158.tar.xz re3-2ae112fdf6b90bb4435dba34bcc2a23604e1e158.tar.zst re3-2ae112fdf6b90bb4435dba34bcc2a23604e1e158.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Physical.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/entities/Physical.h b/src/entities/Physical.h index c1f9f1d9..c2fce334 100644 --- a/src/entities/Physical.h +++ b/src/entities/Physical.h @@ -8,6 +8,8 @@ enum { PHYSICAL_MAX_COLLISIONRECORDS = 6 }; +#define GRAVITY (0.008f) + class CTreadable; class CPhysical : public CEntity @@ -108,7 +110,23 @@ public: } const CVector &GetMoveSpeed() { return m_vecMoveSpeed; } + void SetMoveSpeed(float x, float y, float z) { + m_vecMoveSpeed.x = x; + m_vecMoveSpeed.y = y; + m_vecMoveSpeed.z = z; + } const CVector &GetTurnSpeed() { return m_vecTurnSpeed; } + void SetTurnSpeed(float x, float y, float z) { + m_vecTurnSpeed.x = x; + m_vecTurnSpeed.y = y; + m_vecTurnSpeed.z = z; + } + const CVector &GetCenterOfMass() { return m_vecCentreOfMass; } + void SetCenterOfMass(float x, float y, float z) { + m_vecCentreOfMass.x = x; + m_vecCentreOfMass.y = y; + m_vecCentreOfMass.z = z; + } void ApplyMoveSpeed(void); void ApplyTurnSpeed(void); |