Does UObject has a callback for when the "Construct Object from Class" is done?

Sadly not. For UObjects you’ve got to either call your own Init type function yourself, or wrap it in some other type of construction call like Widgets do. They are UObjects but have an OnConstruct callback built into how they are created by UMG.

1 Like