Discuss Scratch
- Discussion Forums
- » Suggestions
- » Control Block : All at Once // Put blocks in this loop and they run together
- SpyCoderX
-
1000+ posts
Control Block : All at Once // Put blocks in this loop and they run together
But why? What’s the use of this?
- bubgamer07
-
100+ posts
Control Block : All at Once // Put blocks in this loop and they run together
But why? What’s the use of this?
all at once {though i guess in that case you could just do
glide (1) secs to x: (0) y: (0)
say [wee!] for (1) secs
} :: control
say [wee!]
glide (1) secs to x: (0) y: (0)
say []
- nembence
-
100+ posts
Control Block : All at Once // Put blocks in this loop and they run together
(#63)What about this?2.0 alpha all at once block?Can you somehow change the block name or something so it doesn't get confused with the
You could suggest one. I don't have any ideas
run in parallel {
say [Hello!] for (2) secs
}{
play note (60) for (0.25) beats
}{
rest for (0.0625) beats
play note (72) for (0.25) beats
} \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ @delInput @addInput::control
or, if growable C-blocks aren't possible:
with this one the problem is that blocks stacked together are expected to wait for each other, so maybe convert the blocks dropped in it into cap blocks
run in parallel {
say [Hello!] for (2) secs::cap
play note (60) for (0.25) beats::cap
if <(50)=(50)> then {
rest for (0.0625) beats
play note (72) for (0.25) beats
}::control cap
}::control
- VedanshS933
-
1000+ posts
Control Block : All at Once // Put blocks in this loop and they run together
(#63)What about this?2.0 alpha all at once block?Can you somehow change the block name or something so it doesn't get confused with the
You could suggest one. I don't have any ideasrun in parallel {
say [Hello!] for (2) secs
}{
play note (60) for (0.25) beats
}{
rest for (0.0625) beats
play note (72) for (0.25) beats
} \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ @delInput @addInput::control
or, if growable C-blocks aren't possible:
with this one the problem is that blocks stacked together are expected to wait for each other, so maybe convert the blocks dropped in it into cap blocksrun in parallel {
say [Hello!] for (2) secs::cap
play note (60) for (0.25) beats::cap
if <(50)=(50)> then {
rest for (0.0625) beats
play note (72) for (0.25) beats
}::control cap
}::control
The name is nice. \
Last edited by VedanshS933 (Feb. 16, 2025 16:00:34)
- VedanshS933
-
1000+ posts
Control Block : All at Once // Put blocks in this loop and they run together
bump
- Discussion Forums
- » Suggestions
-
» Control Block : All at Once // Put blocks in this loop and they run together