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
@@ -0,0 +1,32 @@
#pragma once
#include "RE/B/BGSSceneAction.h"
#include "RE/B/BSTArray.h"
#include "RE/B/BSTSmartPointer.h"
namespace RE
{
class BSInputEnableLayer;
class __declspec(novtable) BGSSceneActionDialogue :
public BGSSceneAction
{
public:
static constexpr auto RTTI{ RTTI::BGSSceneActionDialogue };
static constexpr auto VTABLE{ VTABLE::BGSSceneActionDialogue };
// members
TESTopic* topic; // 20
float maxLoopTime; // 28
float minLoopTime; // 2C
BSTArray<std::uint32_t> headTrackTargetA; // 30
float currentLoopTimer; // 48
BGSKeyword* pAnimFaceArchType; // 50
BGSKeyword* pSubtypeKeyword; // 58
BGSSoundOutput* outputModel; // 60
BSTSmartPointer<BSInputEnableLayer> pInputLayer; // 68
std::uint32_t headTargetValue; // 74
float headTrackChangeTimer; // 78
};
static_assert(sizeof(BGSSceneActionDialogue) == 0x78);
}