2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-09-15 07:26:35 +00:00
|
|
|
|
|
|
|
#include "../../DNACommon/DNACommon.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec::DNAMP1 {
|
|
|
|
struct CTweakCameraBob : BigDNA {
|
|
|
|
AT_DECL_DNA_YAML
|
|
|
|
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;
|
2016-09-15 07:26:35 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec::DNAMP1
|