metaforce/DataSpec/DNAMP1/ScriptObjects/AreaAttributes.hpp

41 lines
828 B
C++
Raw Normal View History

2015-09-10 20:30:35 +00:00
#ifndef _DNAMP1_AREAATTRIBUTES_HPP_
#define _DNAMP1_AREAATTRIBUTES_HPP_
#include "../../DNACommon/DNACommon.hpp"
#include "IScriptObject.hpp"
#include "Parameters.hpp"
2016-02-13 09:02:47 +00:00
namespace DataSpec
2015-09-10 20:30:35 +00:00
{
namespace DNAMP1
{
struct AreaAttributes : IScriptObject
{
DECL_YAML
2015-11-21 01:16:07 +00:00
enum class EWeatherType : atUint32
2015-09-10 20:30:35 +00:00
{
None,
Snow,
Rain
};
Value<atUint32> unknown1;
Value<bool> skyboxEnabled;
Value<EWeatherType> weather;
Value<float> unknown2;
Value<float> unknown3;
Value<float> unknown4;
Value<float> unknown5;
UniqueID32 skybox;
Value<atUint32> unknown6;
2016-10-02 22:41:36 +00:00
void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut) const
{
g_curSpec->flattenDependencies(skybox, pathsOut);
}
2015-09-10 20:30:35 +00:00
};
}
}
#endif