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,53 @@
#pragma once
#include "RE/B/BSFixedString.h"
#include "RE/B/BSTHashMap.h"
#include "RE/N/NiNode.h"
#include "RE/N/NiPointer.h"
#include "RE/N/NiTransform.h"
namespace RE
{
class __declspec(novtable) BSFlattenedBoneTree :
public NiNode // 000
{
public:
static constexpr auto RTTI{ RTTI::BSFlattenedBoneTree };
static constexpr auto VTABLE{ VTABLE::BSFlattenedBoneTree };
static constexpr auto Ni_RTTI{ Ni_RTTI::BSFlattenedBoneTree };
class FlattenedBone
{
public:
NiTransform local;
NiTransform world;
std::int16_t parent;
std::int16_t child;
std::uint16_t childCount;
std::int16_t sibling;
NiPointer<NiNode> node;
BSFixedString name;
bool deferredAttach;
};
static_assert(sizeof(FlattenedBone) == 0xA0);
BSFlattenedBoneTree() :
NiNode(0)
{}
explicit BSFlattenedBoneTree(std::uint32_t a_numChildren) :
NiNode(a_numChildren)
{
REX::EMPLACE_VTABLE(this);
}
F4_HEAP_REDEFINE_ALIGNED_NEW(BSFlattenedBoneTree);
// members
std::int32_t boneCount{ 0 };
std::int32_t boneCountExpanded{ 0 };
FlattenedBone* bone{ nullptr };
BSTHashMap<BSFixedString, std::int32_t> boneMap;
};
static_assert(sizeof(BSFlattenedBoneTree) == 0x180);
}