docs: add plugin setup guide
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
#pragma once
|
||||
|
||||
#include "RE/B/BGSDestructibleObjectForm.h"
|
||||
#include "RE/B/BGSForcedLocRefType.h"
|
||||
#include "RE/B/BGSKeywordForm.h"
|
||||
#include "RE/B/BGSModelMaterialSwap.h"
|
||||
#include "RE/B/BGSNativeTerminalForm.h"
|
||||
#include "RE/B/BGSNavmeshableObject.h"
|
||||
#include "RE/B/BGSOpenCloseForm.h"
|
||||
#include "RE/B/BGSPropertySheet.h"
|
||||
#include "RE/T/TESBoundAnimObject.h"
|
||||
#include "RE/T/TESFullName.h"
|
||||
#include "RE/T/TESMagicTargetForm.h"
|
||||
|
||||
namespace RE
|
||||
{
|
||||
class __declspec(novtable) TESObjectACTI :
|
||||
public TESBoundAnimObject, // 000
|
||||
public TESFullName, // 068
|
||||
public BGSModelMaterialSwap, // 078
|
||||
public TESMagicTargetForm, // 120
|
||||
public BGSDestructibleObjectForm, // 0B8
|
||||
public BGSOpenCloseForm, // 0C8
|
||||
public BGSKeywordForm, // 0D0
|
||||
public BGSPropertySheet, // 0F0
|
||||
public BGSForcedLocRefType, // 100
|
||||
public BGSNativeTerminalForm, // 110
|
||||
public BGSNavmeshableObject // 120
|
||||
{
|
||||
public:
|
||||
static constexpr auto RTTI{ RTTI::TESObjectACTI };
|
||||
static constexpr auto VTABLE{ VTABLE::TESObjectACTI };
|
||||
static constexpr auto FORM_ID{ ENUM_FORM_ID::kACTI };
|
||||
|
||||
enum class ActiFlags
|
||||
{
|
||||
kNoDisplacement = 0x1,
|
||||
kNoSandbox = 0x2,
|
||||
kIsProceduralWater = 0x4,
|
||||
kIsLODWater = 0x8,
|
||||
kIsRadio = 0x10
|
||||
};
|
||||
|
||||
// members
|
||||
BGSSoundDescriptorForm* soundLoop; // 128
|
||||
BGSSoundDescriptorForm* soundActivate; // 130
|
||||
TESWaterForm* waterForm; // 138
|
||||
std::uint16_t flags; // 140
|
||||
};
|
||||
static_assert(sizeof(TESObjectACTI) == 0x148);
|
||||
}
|
||||
Reference in New Issue
Block a user