Widget slot properties are now shown

This commit is contained in:
2026-03-23 14:10:26 -04:00
parent 2a064f3666
commit 92b03d376d
3 changed files with 20 additions and 3 deletions

Binary file not shown.

View File

@@ -5,6 +5,8 @@
#include "Engine/Blueprint.h"
#include "Engine/SCS_Node.h"
#include "MaterialGraph/MaterialGraphNode.h"
#include "Components/Widget.h"
#include "Components/PanelSlot.h"
#include "EdGraph/EdGraphPin.h"
#include "UObject/EnumProperty.h"
@@ -194,6 +196,17 @@ TArray<FWingProperty> FWingProperty::GetAll(UObject* Obj, EPropertyFlags Flags)
}
}
// If it's a Widget, hide the slot property, and add the
// slot properties.
if (UWidget* Widget = Cast<UWidget>(Obj))
{
FWingProperty::Remove(Result, TEXT("Slot"));
if (UPanelSlot* Slot = Widget->Slot)
{
Collect(Slot->GetClass(), Slot, Result, Flags);
}
}
return Result;
}

View File

@@ -119,7 +119,9 @@ void UWingTypes::ChooseShortName(const FAssetData &Data)
FString UWingTypes::TypeToTextInner(FName Category, FName SubCategory, UObject* SubCategoryObject)
{
if ((Category == UEdGraphSchema_K2::PC_Boolean) ||
if ((Category == UEdGraphSchema_K2::PC_Delegate) ||
(Category == UEdGraphSchema_K2::PC_MCDelegate) ||
(Category == UEdGraphSchema_K2::PC_Boolean) ||
(Category == UEdGraphSchema_K2::PC_Int) ||
(Category == UEdGraphSchema_K2::PC_Int64) ||
(Category == UEdGraphSchema_K2::PC_Name) ||
@@ -241,6 +243,8 @@ void UWingTypes::Initialize(FSubsystemCollectionBase& Collection)
Packages.Sort([](const UPackage& A, const UPackage& B) { return A.GetName() < B.GetName(); });
// Reserve the short names of the primitives.
ReserveShortName(UEdGraphSchema_K2::PC_Delegate);
ReserveShortName(UEdGraphSchema_K2::PC_MCDelegate);
ReserveShortName(UEdGraphSchema_K2::PC_Boolean);
ReserveShortName(UEdGraphSchema_K2::PC_Int);
ReserveShortName(UEdGraphSchema_K2::PC_Int64);