How can I set the value of a FProperty if I don’t know what type of FProperty it is?
I get all my data from csv file and then I need to parse it to the correct values of the properties of the class. The editor constructor prompts all the classes that inherit from this master class, so they might have different properties and can be created outside the Plugin. I need to use reflection.
I know I can cast it to the correct FProperty class (FUInt32Property, FStrProperty, FStructProperty…etc.) but then I don´t know how to set the value, it requests some address and/or container.
I search the Engine´s code and I found some examples, but I don’t fully understand how to use it. I think it is because of the property Address and the container.