Pages: 1
Topic closed
I have a song that I have backgrounds changing during the song. I would like to have the sprite change Costumes, as the stage changes but I can't seem to figure out how to do that...would someone be able to give me some help? thanks
Offline
In the Stage script area, when the background changes, have it sent out a Broadcast message (make up a message name like "Change Costume") like this:
[blocks]
<broadcast[ Change Costume
[/blocks]
Then, in the sprite scripting area, put these blocks:
[blocks]
<when I receive[ Change Costume
<next costume>
[/blocks]
Or, you could have separate messages for each different costume.
Broadcast messages are really powerful so it's well worth your time to learn how to use them. I've got a gallery of demos and tutorials on Broadcast that you might find useful. Good luck!
Offline
Topic closed
Pages: 1