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,42 @@
#pragma once
#include "RE/B/BSFixedString.h"
namespace RE
{
namespace Movement
{
enum class SPEED_DIRECTION
{
kTranslation = 0x0,
kLeft = 0x0,
kRight = 0x1,
kForward = 0x2,
kBack = 0x3,
kRotations = 0x4,
kPitch = 0x4,
kRoll = 0x5,
kYaw = 0x6,
kCount = 0x7
};
class MaxSpeeds
{
public:
// members
float speeds[7][4]; // 00
};
static_assert(sizeof(MaxSpeeds) == 0x70);
class TypeData
{
public:
// members
BSFixedString typeName; // 00
MaxSpeeds defaultData; // 08
float floatHeight; // 78
float flightAngleGain; // 7C
};
static_assert(sizeof(TypeData) == 0x80);
}
}