metaforce/DataSpec/DNAMP1/ScriptObjects/Trigger.hpp

27 lines
701 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-09-10 13:30:35 -07:00
#include "../../DNACommon/DNACommon.hpp"
#include "IScriptObject.hpp"
#include "Parameters.hpp"
2018-12-07 21:30:43 -08:00
namespace DataSpec::DNAMP1 {
struct Trigger : IScriptObject {
2019-08-10 17:49:41 -07:00
AT_DECL_DNA_YAMLV
2018-12-07 21:30:43 -08:00
String<-1> name;
Value<atVec3f> location;
Value<atVec3f> volume;
DamageInfo damageInfo;
Value<atVec3f> force;
2018-12-30 21:01:42 -08:00
Value<atUint32> flags;
2018-12-07 21:30:43 -08:00
Value<bool> active;
2018-12-30 21:01:42 -08:00
Value<bool> deactivateOnEntered;
Value<bool> deactivateOnExited;
2017-02-24 00:28:44 -08:00
zeus::CAABox getVISIAABB(hecl::blender::Token& btok) const override {
2018-12-07 21:30:43 -08:00
zeus::CVector3f halfExtent = zeus::CVector3f(volume) / 2.f;
zeus::CVector3f loc(location);
return zeus::CAABox(loc - halfExtent, loc + halfExtent);
}
2015-09-10 13:30:35 -07:00
};
2018-12-07 21:30:43 -08:00
} // namespace DataSpec::DNAMP1