Hello, I’ve got the following code to display widgets in a custom details panel:
//Value
+ SHorizontalBox::Slot().AutoWidth()[
SNew(SBox).MinDesiredWidth(minWidth)[
sph->GetChildHandle(memberName)->CreatePropertyValueWidget()
]
]
sph being the PropertyHandler, this nicely displays all properties I pass to it. However FVectors and FRotators don’t display properly (Offset and Angle in the picture below, not displaying the vector and rotator values)
How can I make them display properly? Should I use something other than an SBox?
Thanks