What is worktempo in scratch programming
Answers
Answer:
As this block holds how long drums and notes will be played, it is useful in music projects where they must sense how long an instrument will be playing.
Some common uses for the Tempo block:
Speed controls on projects that play music made with the Music Extension
when
clicked
forever
if
mouse
down?
then
point
towards
mouse-pointer
set
tempo
to
direction
mod
181
+
20
bpm
set
universal tempo
to
tempo
Loops that must stop once the tempo is at a certain amount
repeat
until
tempo
=
20
change
tempo
by
-1
Sensing and showing how fast something is being played
when
clicked
forever
say
tempo
point
in
direction
tempo
Synchronizing with notes with adjustable tempo
when
clicked
ask
Tempo?
and
wait
set
tempo
to
answer
bpm
play
note
60
for
1
beats
play
note
62
for
1
beats
play
note
63
for
1
beats
when
clicked
wait
until
not
answer
=
say
C
for
60
/
tempo
secs
say
D
for
60
/
tempo
secs
say
E!
for
60
/
tempo
secs