<feat: New project structure>

<feat: New release>
This commit is contained in:
Alessandro Autiero
2023-09-02 15:34:15 +02:00
parent 64b33102f4
commit b41e22adeb
953 changed files with 1373072 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#include "KismetSystemLibrary.h"
#include "gui.h"
void UKismetSystemLibrary::PrintStringHook(UObject* Context, FFrame* Stack, void* Ret)
{
UObject* WorldContextObject; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
FString inString; // (Parm, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
bool bPrintToScreen; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)
bool bPrintToLog; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)
FLinearColor TextColor; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor, AdvancedDisplay, HasGetValueTypeHash, NativeAccessSpecifierPublic)
float Duration;
Stack->StepCompiledIn(&WorldContextObject);
Stack->StepCompiledIn(&inString);
Stack->StepCompiledIn(&bPrintToScreen);
Stack->StepCompiledIn(&bPrintToLog);
Stack->StepCompiledIn(&TextColor);
Stack->StepCompiledIn(&Duration);
if (bEngineDebugLogs)
LOG_INFO(LogDev, "GameLog: {}", inString.ToString());
return PrintStringOriginal(Context, Stack, Ret);
}