Replies: 1 comment
-
|
Display a number (can easily be extended to text): costumes "numbers/1.svg", "numbers/2.svg", "numbers/3.svg", "numbers/4.svg", "numbers/5.svg", "numbers/6.svg", "numbers/7.svg", "numbers/8.svg", "numbers/9.svg", "numbers/0.svg";
hide;
proc Display num, x, y, size {
goto $x, $y;
set_size $size;
local idx = 1;
until idx > length($num) {
switch_costume $num[idx];
clone; # or stamp, but this is lower quality
change_x (32 * $size / 100);
idx++;
}
}
onclone {
show;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Recipes are practical, real-world examples or step-by-step guides demonstrating how to achieve specific tasks using goboscript.
Post your goboscript recipes here. They will be added to the docs.
Beta Was this translation helpful? Give feedback.
All reactions