Template Actor is an AActor used as a template when spawning the new Actor. The spawned Actor will be initialized using the property values of the template one. If no template Actor is specified, the class default object (CDO) will be used to initialize the spawned Actor.
This is confusing for me. How am I to supply an actor to use as a template when I haven’t figured out the properties? In my case, I need to pass an array into the constructor of this actor class before the actor can spawn. The data in this array is generated just before I go to call the spawn of the actor. So how can I create a template actor?