2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 21:47:59 +00:00

CFirstPersonCamera imps

This commit is contained in:
2016-09-16 15:21:19 -07:00
parent dae5ea06f5
commit 38fcf914b4
15 changed files with 422 additions and 183 deletions

View File

@@ -16,6 +16,17 @@ struct ITweakPlayer : BigYAML
virtual float GetPlayerSomething3() const=0; // x27c
virtual float GetPlayerSomething4() const=0; // x134
virtual bool GetPlayerSomething5() const=0; // x228_24
virtual float GetPlayerSomething6() const=0; // x288
virtual float GetPlayerSomething7() const=0; // x28c
virtual float GetPlayerSomething8() const=0; // x290
virtual float GetPlayerSomething9() const=0; // x294
virtual float GetPlayerSomething10() const=0; // x298
virtual float GetPlayerSomething11() const=0; // x29c
virtual float GetPlayerSomething12() const=0; // x280
virtual float GetPlayerSomething13() const=0; // x2b0
virtual float GetPlayerSomething14() const=0; // x184
virtual float GetPlayerSomething15() const=0; // x138
virtual float GetPlayerSomething16() const=0; // x14c
virtual float GetLeftLogicalThreshold() const=0;
virtual float GetRightLogicalThreshold() const=0;
};

View File

@@ -182,6 +182,17 @@ struct CTweakPlayer : ITweakPlayer
float GetPlayerSomething3() const { return x27c_; }
float GetPlayerSomething4() const { return x134_; }
bool GetPlayerSomething5() const { return x228_24_; }
float GetPlayerSomething6() const { return x288_; }
float GetPlayerSomething7() const { return x28c_; }
float GetPlayerSomething8() const { return x290_; }
float GetPlayerSomething9() const { return x294_; }
float GetPlayerSomething10() const { return x298_; }
float GetPlayerSomething11() const { return x29c_; }
float GetPlayerSomething12() const { return x280_; }
float GetPlayerSomething13() const { return x2b0_; }
float GetPlayerSomething14() const { return x184_; }
float GetPlayerSomething15() const { return x138_; }
float GetPlayerSomething16() const { return x14c_; }
float GetLeftLogicalThreshold() const {return x150_leftDiv;}
float GetRightLogicalThreshold() const {return x154_rightDiv;}
CTweakPlayer() = default;