Discuss Scratch
- Discussion Forums
- » Questions about Scratch
- » What does the broadcast block do?
- mitdk
-
1000+ posts
What does the broadcast block do?
These blocks are basically a way for sprites to communicate. So, if you put this script into sprite 1:
and this in sprite 2:
Then, sprite 2 will say hello after 3 secs
- 84375
-
500+ posts
What does the broadcast block do?
The broadcast blocks make things so much easier within your projects! You can use them among many messy lines of coding where you probably won't want to use the “wait (#) seconds” in order to make your sprites act at the same time during your game, animation, etc. @mitdk explained it amazingly.
- SuperCroc398
-
25 posts
What does the broadcast block do?
These blocks are basically a way for sprites to communicate. So, if you put this script into sprite 1:and this in sprite 2:Then, sprite 2 will say hello after 3 secs
Oohh, now I get it
- MrFluffyPenguins
-
1000+ posts
What does the broadcast block do?
This block sends a broadcast similar to the other blocks, but the script doesn't continue until all of the blocks under a
block have finished.
So if you did this:
The sprite would say “Hello!” after 3 seconds.
Last edited by MrFluffyPenguins (Dec. 4, 2020 01:25:33)
- Ihatr
-
1000+ posts
What does the broadcast block do?
you broke the tagsThis block sends a broadcast similar to the other blocks, but the script doesn't continue until all of the blocks under ablock have finished.
So if you did this:The sprite would say “Hello!” after 3 seconds.
Last edited by Ihatr (Dec. 3, 2020 13:56:12)
- Discussion Forums
- » Questions about Scratch
-
» What does the broadcast block do?