More work on property
This commit is contained in:
@@ -242,6 +242,16 @@ FString WingUtils::FormatName(const FProperty *Prop)
|
||||
return ExternalizeID(Prop->GetFName());
|
||||
}
|
||||
|
||||
FString WingUtils::FormatName(IPropertyHandle &Handle)
|
||||
{
|
||||
return ExternalizeID(Handle.GetProperty()->GetFName());
|
||||
}
|
||||
|
||||
FString WingUtils::FormatName(const TSharedPtr<IPropertyHandle> &Handle)
|
||||
{
|
||||
return FormatName(*Handle);
|
||||
}
|
||||
|
||||
FString WingUtils::FormatName(const FUserPinInfo &Pin)
|
||||
{
|
||||
return ExternalizeID(Pin.PinName);
|
||||
|
||||
Reference in New Issue
Block a user