Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » how do i switch costumes?
- SeanRed111
-
7 posts
how do i switch costumes?
how do i make a costume go back i know you can use the next costume block to go forward but how about back?
Last edited by SeanRed111 (May 26, 2018 01:13:48)
- mstone326
-
1000+ posts
how do i switch costumes?
You can use the operator blocks to snap into the costume blocks.
switch costume to ((costume #) - (1))
Last edited by mstone326 (May 26, 2018 01:25:32)
- OTSFan203
-
500+ posts
how do i switch costumes?
there are many ways to do this. Here are a few methods: how do i make a costume go back i know you can use the next costume block to go forward but how about back?
Method 1
switch costume to ((costume #) - (1))Method 2:
(continue this repeatedly depending on the number of costumes) Also this one is inefficent
when <key [left arrow] pressed
forever
if <(costume #) = [2]> then
switch costume to [costume1]
Or if you're doing a one-time thing, you can do
when I receive [idk you did it]
switch costume to [costume1]
Last edited by OTSFan203 (May 26, 2018 14:04:10)
- Discussion Forums
- » Help with Scripts
-
» how do i switch costumes?