Pages: 1
Topic closed
Hi
I've created a maze game with loads of sprites and want to show / hide them on different levels, I have tried adding these instructions to the Sprite
[scratchblocks]
when I receive Level 1
hide
when I receive Level 2
show
This hides the sprite on Level 1, but will not show it on Level 2.
Any suggestions ??
Offline
JE58ELS wrote:
Hi
I've created a maze game with loads of sprites and want to show / hide them on different levels, I have tried adding these instructions to the Spritewhen I receive [Level 1 v] hide when I receive [Level 2 v] showThis hides the sprite on Level 1, but will not show it on Level 2.
Any suggestions ??
when gf clicked hide forever if <(level) = [1]> hide else if <(level) = [2]> show else Keep repeating for other levels End EndThis should work.
Offline
How you have it will work, but you need to make sure something is broadcasting level 2, otherwise it won't work. There also may be another script that hides it after it is shown, although I don't really think that's the problem.
Offline
Topic closed
Pages: 1