Following the documentation:
I can’t see a way to set/create objects as values in the config file, that is if I have an object UServerSettings create an array of objects ServerSettings with values defined.
I know how to do that using structs, but I need them to be objects, I am currently creating new objects and copy the values from the structs in the initialize() method.
[/Script/MyPoject.MyServerSubsystem]
+ServerSettings=(Name="Local",URL="127.0.0.1:9999");is a struct and I want an UObject
+ServerSettings=(Name="AWS",URL="18.150.23.13:9999"); is a struct and I want an UObject
Is there a way to have an array of objects instead of Structs?
Thanks!