Completing downgrade to 5.5.4

This commit is contained in:
2026-05-15 19:37:34 -04:00
parent 94e6385f14
commit c0848c2670
8 changed files with 4 additions and 16 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -38,7 +38,7 @@ public:
MaterialObj->ForceRecompileForRendering(); MaterialObj->ForceRecompileForRendering();
// Wait for compilation to finish, then check for errors // Wait for compilation to finish, then check for errors
FMaterialResource* Resource = MaterialObj->GetMaterialResource(GetFeatureLevelShaderPlatform(GMaxRHIFeatureLevel)); FMaterialResource* Resource = MaterialObj->GetMaterialResource(GMaxRHIFeatureLevel);
TArray<FString> Errors; TArray<FString> Errors;
if (Resource) if (Resource)
{ {

View File

@@ -119,7 +119,7 @@ public:
// Register a variable GUID for the new widget. UMG's compiler // Register a variable GUID for the new widget. UMG's compiler
// ensures every widget in the tree is present in this map. // ensures every widget in the tree is present in this map.
BP->OnVariableAdded(NewWidget->GetFName()); // BP->OnVariableAdded(NewWidget->GetFName());
WingOut::Stdout.Printf(TEXT("Created widget '%s' of type '%s'\n"), *Name, *Type); WingOut::Stdout.Printf(TEXT("Created widget '%s' of type '%s'\n"), *Name, *Type);
} }

View File

@@ -103,7 +103,7 @@ UEdGraphNode* FWingGraphAction::Execute(const FVector2D &Location) const
} }
else else
{ {
return Action->PerformAction(Graph, nullptr, UE::Slate::CastToVector2f(Location), /*bSelectNewNode=*/false); return Action->PerformAction(Graph, nullptr, Location, /*bSelectNewNode=*/false);
} }
} }

View File

@@ -1,7 +1,7 @@
#pragma once #pragma once
#include "CoreMinimal.h" #include "CoreMinimal.h"
#include "Materials/MaterialParameters.h" #include "MaterialTypes.h"
#include "WingBasics.h" #include "WingBasics.h"
#include "WingParameterEditor.generated.h" #include "WingParameterEditor.generated.h"