How to set a UFUNCTION parameter's default value to a defined variable?

I don’t think it’s possible. What you could do is default to DataTableRef if Table is null.

UDataTable* DT = Table ? Table : DataTableRef;
1 Like