Hi Folks,
I'm working on a simple drag and drop game whereby the user matches pairs of socks on a washing line:
I'm using pre-placed spawners (orange circles) to then generate pairs of socks on start of layout. However, I'm really struggling to get it to execute properly without the socks overlapping each other (multiple socks spawning on the same location):
This is the current version of code that generates the above result:
[Spawn Socks]
----+ System: Every tick
--------+ System: Sock1Count < 7
------------+ System: Pick a random Spawner instance
-------------> Spawner: Spawn sock1 on layer 0 (image point 0, create hierarchy: False, template: "")
-------------> Spawner: Destroy
----+ System: Every tick
-----> (no actions)
----+ System: Sock2Count < 7
--------+ System: Pick a random Spawner instance
---------> Spawner: Spawn sock2 on layer 0 (image point 0, create hierarchy: False, template: "")
---------> Spawner: Destroy
Any help would be appreciated.