metaforce/DataSpec/DNAMP1/ScriptObjects/CameraBlurKeyframe.hpp

19 lines
398 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-09-10 20:30:35 +00:00
#include "../../DNACommon/DNACommon.hpp"
#include "IScriptObject.hpp"
#include "Parameters.hpp"
2018-12-08 05:30:43 +00:00
namespace DataSpec::DNAMP1 {
struct CameraBlurKeyframe : IScriptObject {
2019-08-11 00:49:41 +00:00
AT_DECL_DNA_YAMLV
2018-12-08 05:30:43 +00:00
String<-1> name;
Value<bool> active;
Value<atUint32> btype;
Value<float> amount;
Value<atUint32> unk;
Value<float> timeIn;
Value<float> timeOut;
2015-09-10 20:30:35 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::DNAMP1