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,28 @@
#pragma once
#include "RE/N/NiPoint3.h"
namespace RE
{
class BSPathingAvoidNode
{
public:
enum class AVOID_NODE_TYPE : std::uint32_t
{
kSphere = 0x0,
kCylinder = 0x1,
kSphereActor = 0x2,
kSphereTarget = 0x3,
kSphereThreat = 0x4,
kSphereObstacle = 0x5
};
// members
NiPoint3 point1; // 00
NiPoint3 point2; // 0C
float radius; // 18
float cost; // 1C
BSPathingAvoidNode::AVOID_NODE_TYPE type; // 20
};
static_assert(sizeof(BSPathingAvoidNode) == 0x24);
}