#pragma once #include "../../DNACommon/DNACommon.hpp" #include "IScriptObject.hpp" #include "Parameters.hpp" namespace DataSpec::DNAMP1 { struct AreaAttributes : IScriptObject { AT_DECL_DNA_YAMLV enum class EWeatherType : atUint32 { None, Snow, Rain }; Value load; /* 0 causes the loader to bail and return null */ Value skyboxEnabled; Value weather; Value envFxDensity; Value thermalHeat; Value xrayFogDistance; Value worldLightingLevel; UniqueID32 skybox; Value phazonType; void gatherDependencies(std::vector& pathsOut, std::vector& lazyOut) const override { g_curSpec->flattenDependencies(skybox, pathsOut); } }; } // namespace DataSpec::DNAMP1