mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
40 lines
1.5 KiB
C++
40 lines
1.5 KiB
C++
#pragma once
|
|
|
|
// Dumped with Dumper-7!
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// ENUMS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
enum class EEXRCompressionFormat : uint8
|
|
{
|
|
None = 0,
|
|
PIZ = 1,
|
|
ZIP = 2,
|
|
DWAA = 3,
|
|
DWAB = 4,
|
|
EEXRCompressionFormat_MAX = 5,
|
|
};
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// STRUCTS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
// 0x38 (0x38 - 0x0)
|
|
// ScriptStruct MovieRenderPipelineRenderPasses.MoviePipelinePostProcessPass
|
|
struct FMoviePipelinePostProcessPass
|
|
{
|
|
public:
|
|
bool bEnabled; // 0x0(0x1)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
uint8 Pad_E16[0x7]; // Fixing Size After Last Property [ Dumper-7 ]
|
|
TSoftObjectPtr<class UMaterialInterface> Material; // 0x8(0x30)(Edit, BlueprintVisible, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
};
|
|
|
|
}
|
|
|
|
|