#pragma once #include "../../DNACommon/DNACommon.hpp" #include "IScriptObject.hpp" #include "Parameters.hpp" namespace DataSpec::DNAMP1 { struct PathCamera : IScriptObject { AT_DECL_DNA_YAMLV String<-1> name; Value location; Value orientation; Value active; struct CameraParameters : BigDNA { AT_DECL_DNA Value propertyCount; Value closedLoop; Value noFilter; Value tangentOrientation; Value easeDist; Value useHintLookZ; Value clampToClosedDoor; } cameraParameters; Value lengthExtent; Value filterMag; Value filterProportion; Value initPos; Value minEaseDist; Value maxEaseDist; }; } // namespace DataSpec::DNAMP1