Name it "3.2 Conversations
" and share it
What are the different ways to coordinate interactions between sprites?
You could use the say ...
blocks and pair them with wait
blocks, but this gets tedious and if you need to fix something later on is troublesome. Instead you should use broadcast
and when I receive
blocks to have sprites give each other cues to their turn to speak/act.
broadcast
and when I receive
blocks are used to coordinate the conversation.broadcast
and when I receive
blocks to add your own joke.message1
broadcasts by selecting "new message
" on the drop down then writing your own broadcastswhen I receive
and even broadcast
, while the other is even when I receive
and odd broadcast
. If the sprites keep taking turns to talk, this pattern will continue.broadcast
and when I receive
blocks in different parts of your project.