How to accidentally stop pickup up two sprites at once?
etheridge
Member Posts: 12
Hi all.
I'm making this game where you have to put cretin sprites at a position on the screen, however at points some sprites overlay as they walk.
How could I stop picking them both up if they are currently overlapping?
Any help would be really appreciated!!
Jase.
I'm making this game where you have to put cretin sprites at a position on the screen, however at points some sprites overlay as they walk.
How could I stop picking them both up if they are currently overlapping?
Any help would be really appreciated!!
Jase.
Comments
This way even if they are overlapping you will only pick one object up.
Hope this helps.
Darren.
Thanks for your help, I think I'm being a complete simpleton but I'm not getting it (blush).
HELP... Please :-)
Cheers!!
Jase.
Attribute1 (can we move actor 1?)
Attribute2 (can we move actor 2?)
Now on actor 1:
RULE
If actor receives event > touch > is pressed
AND Attribute1 = false
Then
Attribute2 = true
Otherwise
Attribute1 = true
Have that on both actors, but change the if statement to match the correct actor
Hope that helps
// Red Dot Imc
Darren.