metaforce/DataSpec/DNAMP1/ScriptObjects/CameraShaker.hpp

26 lines
464 B
C++
Raw Normal View History

2015-09-10 20:30:35 +00:00
#ifndef _DNAMP1_CAMERASHAKER_HPP_
#define _DNAMP1_CAMERASHAKER_HPP_
#include "../../DNACommon/DNACommon.hpp"
#include "IScriptObject.hpp"
#include "Parameters.hpp"
2017-12-29 08:08:12 +00:00
namespace DataSpec::DNAMP1
2015-09-10 20:30:35 +00:00
{
struct CameraShaker : IScriptObject
{
DECL_YAML
String<-1> name;
2017-10-10 03:50:48 +00:00
Value<float> xMag;
2016-04-17 02:50:45 +00:00
Value<float> xB;
2017-10-10 03:50:48 +00:00
Value<float> yMag;
2016-04-17 02:50:45 +00:00
Value<float> yB;
2017-10-10 03:50:48 +00:00
Value<float> zMag;
2016-04-17 02:50:45 +00:00
Value<float> zB;
Value<float> duration;
2017-03-20 05:09:53 +00:00
Value<bool> active;
2015-09-10 20:30:35 +00:00
};
}
#endif