第一次上传
This commit is contained in:
Executable
+49
@@ -0,0 +1,49 @@
|
||||
#pragma once
|
||||
|
||||
//PUBGM(0.13.5)32位SDK
|
||||
//作者:清华
|
||||
//Telegram:@qinghuanb666
|
||||
//生成时间:Fri Apr 18 20:44:40 2025
|
||||
|
||||
namespace SDK
|
||||
{
|
||||
//---------------------------------------------------------------------------
|
||||
//Enums
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
// Enum ImmediatePhysics.ESimulationSpace
|
||||
enum class ESimulationSpace : uint8_t
|
||||
{
|
||||
ESimulationSpace__ComponentSpace = 0,
|
||||
ESimulationSpace__WorldSpace = 1,
|
||||
ESimulationSpace__RootBoneSpace = 2,
|
||||
ESimulationSpace__ESimulationSpace_MAX = 3
|
||||
};
|
||||
|
||||
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//Script Structs
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
// ScriptStruct ImmediatePhysics.AnimNode_RigidBody
|
||||
// 0x0188 (0x01E0 - 0x0058)
|
||||
struct FAnimNode_RigidBody : public FAnimNode_SkeletalControlBase
|
||||
{
|
||||
class UPhysicsAsset* OverridePhysicsAsset; // 0x0058(0x0004) (Edit, ZeroConstructor, IsPlainOldData)
|
||||
struct FVector OverrideWorldGravity; // 0x005C(0x000C) (Edit, IsPlainOldData)
|
||||
struct FVector ExternalForce; // 0x0068(0x000C) (Edit, IsPlainOldData)
|
||||
TEnumAsByte<ECollisionChannel> OverlapChannel; // 0x0074(0x0001) (Edit, ZeroConstructor, IsPlainOldData)
|
||||
bool bEnableWorldGeometry; // 0x0075(0x0001) (Edit, ZeroConstructor, IsPlainOldData)
|
||||
unsigned char UnknownData00[0x2]; // 0x0076(0x0002) MISSED OFFSET
|
||||
ESimulationSpace SimulationSpace; // 0x0078(0x0001) (Edit, ZeroConstructor, IsPlainOldData)
|
||||
unsigned char UnknownData01[0x3]; // 0x0076(0x0003) FIX WRONG TYPE SIZE OF PREVIOUS PROPERTY
|
||||
bool bOverrideWorldGravity; // 0x007C(0x0001) (Edit, ZeroConstructor, IsPlainOldData)
|
||||
unsigned char UnknownData02[0x3]; // 0x007D(0x0003) MISSED OFFSET
|
||||
float CachedBoundsScale; // 0x0080(0x0004) (Edit, ZeroConstructor, IsPlainOldData)
|
||||
bool bComponentSpaceSimulation; // 0x0084(0x0001) (ZeroConstructor, Deprecated, IsPlainOldData)
|
||||
unsigned char UnknownData03[0x15B]; // 0x0085(0x015B) MISSED OFFSET
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user