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,61 @@
#pragma once
#include "RE/B/BSFixedString.h"
namespace RE
{
namespace MovementLargeDelta
{
enum class SPEED;
enum class FROM_DIRECTION
{
kFacingForward = 0,
kStrafingRight = 1,
kStrafingBackward = 2,
kStrafingLeft = 3,
kTotal = 4,
};
enum class TO_DIRECTION
{
kFacingForward = 0,
kStrafingRight = 1,
kStrafingBackward = 2,
kStrafingLeft = 3,
kFacingRight = 4,
kFacingBackward = 5,
kFacingLeft = 6,
kTotal = 0x7,
};
class CurrentState
{
public:
// members
REX::TEnumSet<SPEED, std::uint32_t> fromSpeed; // 00
REX::TEnumSet<FROM_DIRECTION, std::uint32_t> fromDirection; // 04
};
static_assert(sizeof(CurrentState) == 0x8);
class DesiredState
{
public:
// members
REX::TEnum<SPEED, std::uint32_t> toSpeed;
REX::TEnum<TO_DIRECTION, std::uint32_t> toDirection;
};
static_assert(sizeof(DesiredState) == 0x8);
class IdleSelectionData
{
public:
// members
CurrentState fromState; // 00
DesiredState toState; // 08
};
static_assert(sizeof(IdleSelectionData) == 0x10);
}
}