Spawn Actor, Help Limit Spawns
Basically: when actor 1 overlaps with actor 2, spawn another actor 2. However, I just want ONE new actor to spawn with each overlap - but what I am getting is a bunch of actors spawning until actor 1 stops overlapping with actor 2. What am I missing?
Comments
Rule: when
Event: overlap/collide with actor2
--Rule: when (nested)
--Attribute: self.didSpawn = 0
----Spawn actor2
----changeAttribute: self.didSpawn To: 1
Otherwise: (this is on main rule)
--changeAttribute: self.didSpawn To: 0
@};- MH