I created this actor which would spawn an enemy to the map. So far it works to some degree.
The problem is that is spawns way too many actors which is a HUGE hit to performance.
The second issue is that I want it to only spawn if the enemy is dead (there is a bool variable that is activated when the enemy is dead).
My aim was for it to chose a random point within the area around this actor to spawn an enemy. It would then wait until of the spawned actors are dead and then spawn more after a wait period.
Any help would be fantastic!
Quick Note:
I’m trying to avoid using the Event Tick in order to keep performance because of the scale of the game. The Timeline is set to .50 and is set to Autostart and Loop.
I actually got it working the way I want, but the problem is that the spawned actors are being placed halfway through the floor. Any suggestions? I believe the problem is the Get Random Point in Radius node.