2023-08-09 23:45:58 +03:00
|
|
|
#ifndef _SLDRTWEAKPLAYER_MISC
|
|
|
|
|
#define _SLDRTWEAKPLAYER_MISC
|
|
|
|
|
|
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
|
|
|
|
|
|
|
|
struct SLdrTweakPlayer_Misc {
|
|
|
|
|
SLdrTweakPlayer_Misc();
|
|
|
|
|
~SLdrTweakPlayer_Misc();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
float eyeOffset;
|
|
|
|
|
float normalTurnFactor;
|
|
|
|
|
float freeLookTurnFactor;
|
|
|
|
|
float freeLookMaxX;
|
|
|
|
|
float freeLookMaxZ;
|
|
|
|
|
float freeLookSpeed;
|
|
|
|
|
float freeLookSnapSpeed;
|
|
|
|
|
float freeLookFadeAngle;
|
|
|
|
|
float freeLookMinAngle;
|
|
|
|
|
float freeLookCenteredTime;
|
|
|
|
|
float freeLookDampenFactor;
|
|
|
|
|
bool nullAnalogScales;
|
2023-08-09 23:45:58 +03:00
|
|
|
float unknown;
|
2023-08-11 22:35:54 +03:00
|
|
|
float leftAnalogMax;
|
|
|
|
|
float rightAnalogMax;
|
2023-08-09 23:45:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrTweakPlayer_Misc(SLdrTweakPlayer_Misc&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRTWEAKPLAYER_MISC
|