Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/RE/O/OBJ_LIGH.h
T
2026-05-30 18:33:24 +12:00

26 lines
818 B
C++

#pragma once
namespace RE
{
class OBJ_LIGH
{
public:
// members
std::int32_t time; // 00
std::uint32_t radius; // 04
std::uint32_t color; // 08
std::uint32_t flags; // 0C
float fallOffExponent; // 10
float fov; // 14
float nearDistance; // 18
float flickerPeriodRecip; // 1C
float flickerIntensityAmplitude; // 20
float flickerMovementAmplitude; // 24
float attenConstant; // 28
float attenScalar; // 2C
float attenExponent; // 30
float godrayNearClipDistance; // 34
};
static_assert(sizeof(OBJ_LIGH) == 0x38);
}