Files

27 lines
565 B
C++
Raw Permalink Normal View History

#include "Game/Camera/CameraTowerPos.hpp"
#include "Game/Camera/CamTranslatorTowerPos.hpp"
2021-12-16 18:40:25 +01:00
CameraTowerPos::CameraTowerPos(const char *pName) : CameraTowerBase(pName) {
2021-12-29 00:41:46 +01:00
mWPoint.x = 0.0f;
mWPoint.y = 0.0f;
mWPoint.z = 0.0f;
mAxis.x = 0.0f;
mAxis.y = 1.0f;
mAxis.z = 0.0f;
mAngleA = 0.0f;
mAngleB = 0.0f;
mUpX = 1000.0f;
mUpY = 0.5f;
2021-12-16 18:40:25 +01:00
_94 = 0.0f;
_98 = 0.0f;
_9C = 0.0f;
2021-12-29 01:58:41 +01:00
}
2022-01-01 23:43:26 +01:00
CameraTowerPos::~CameraTowerPos() {
}
2021-12-30 00:34:02 +01:00
CamTranslatorBase *CameraTowerPos::createTranslator() {
2021-12-29 01:58:41 +01:00
return new CamTranslatorTowerPos(this);
}