2016-09-15 07:26:35 +00:00
|
|
|
#ifndef __URDE_CTWEAKCAMERABOB_HPP__
|
|
|
|
#define __URDE_CTWEAKCAMERABOB_HPP__
|
|
|
|
|
|
|
|
#include "../../DNACommon/DNACommon.hpp"
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMP1
|
2016-09-15 07:26:35 +00:00
|
|
|
{
|
2018-02-22 07:24:51 +00:00
|
|
|
struct CTweakCameraBob : BigDNA
|
2016-09-15 07:26:35 +00:00
|
|
|
{
|
2018-02-22 07:24:51 +00:00
|
|
|
AT_DECL_DNA_YAML
|
2016-09-15 07:26:35 +00:00
|
|
|
Value<float> cameraBobExtentX;
|
|
|
|
Value<float> cameraBobExtentY;
|
|
|
|
Value<float> cameraBobPeriod;
|
|
|
|
Value<float> orbitScale;
|
|
|
|
Value<float> maxOrbitScale;
|
|
|
|
Value<float> slowSpeedPeriodScale;
|
|
|
|
Value<float> targetMagnitudeTrackingRate;
|
|
|
|
Value<float> landingBobSpringConstant;
|
|
|
|
Value<float> viewWanderRadius;
|
|
|
|
Value<float> viewWanderSpeedMin;
|
|
|
|
Value<float> viewWanderSpeedMax;
|
|
|
|
Value<float> viewWanderRollVariation;
|
|
|
|
Value<float> gunBobMagnitude;
|
|
|
|
Value<float> helmetBobMagnitude;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CTWEAKCAMERABOB_HPP__
|