docs: add plugin setup guide

This commit is contained in:
2026-05-30 18:33:24 +12:00
parent f3db41c402
commit b61043a3fe
1776 changed files with 122386 additions and 2 deletions
+27
View File
@@ -0,0 +1,27 @@
#pragma once
namespace RE
{
class __declspec(novtable) Sun :
public SkyObject
{
public:
static constexpr auto RTTI{ RTTI::Sun };
static constexpr auto VTABLE{ VTABLE::Sun };
virtual ~Sun();
// members
NiPointer<NiBillboardNode> sunBaseNode; // 10
NiPointer<NiBillboardNode> sunGlareNode; // 18
NiPointer<BSTriShape> sunBase; // 20
NiPointer<BSTriShape> sunQuery; // 28
NiPointer<BSTriShape> sunGlare; // 30
NiPointer<NiDirectionalLight> light; // 38
NiPointer<NiDirectionalLight> cloudLight; // 40
float glareScale; // 48
bool doOcclusionTests; // 4C
NiPointer<BSShaderAccumulator> sunAccumulator; // 50
};
static_assert(sizeof(Sun) == 0x58);
}