Is it possible to change UPROPERTY UIMin/Max specifiers at runtime?

I have a custom struct that is used to define a range of float values. It’s used in different places that each should have different UI/clamp min/max values.

Ideally I would create my struct with FMyStruct(minValue, maxValue, uiMin, uiMax) and it would set those values at runtime.

Is it possible to do this?

1 Like