Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How do I zoom in more than the 150 limit?
- DifferentDance8
-
Scratcher
1000+ posts
How do I zoom in more than the 150 limit?
You see, I'm working on my SDS game and I wanted a background that scrolls seamlessly. I've been wondering on a way to make the “trees” sprite zoom in at 500 instead of 150 without begging users to use Turbowarp to remove the max size limit (which isn't official). I heard of a way you can do that, but I forgot it.
If it helps, here's the project link: https://scratch.mit.edu/projects/869114407/
If it helps, here's the project link: https://scratch.mit.edu/projects/869114407/
- medians
-
Scratcher
1000+ posts
How do I zoom in more than the 150 limit?
You mean like this?

Edit: Yeah it should be something like this in your case if you're gonna use multiple costumes, or:


Edit: Yeah it should be something like this in your case if you're gonna use multiple costumes, or:

Last edited by medians (June 25, 2023 04:45:11)
- deck26
-
Scratcher
1000+ posts
How do I zoom in more than the 150 limit?
The maximum size for a costume depends on the costume size - a 2 x 2 pixel costume might accept a size of 2000% (I'm just guessing) but a 200 x 200 pixel costume only allow a max size of 110% (again just an guess/example).
You can workaround this by selecting a small costume, setting the size you want and then selecting the large costume.
You can workaround this by selecting a small costume, setting the size you want and then selecting the large costume.
- quackie8002
-
Scratcher
91 posts
How do I zoom in more than the 150 limit?
I had an open world game where I would have to make the size 4k or something and here is the code if it helps.
connect the blocks though. For some reason it does not let me connect em in this forum.
when green flag clicked
switch costume to [ make a costume that is just a dot]
set size to [ the size you want] %
switch costume to [ the costume you want]
connect the blocks though. For some reason it does not let me connect em in this forum.
- medians
-
Scratcher
1000+ posts
How do I zoom in more than the 150 limit?
I had an open world game where I would have to make the size 4k or something and here is the code if it helps.Fixed.when green flag clicked
switch costume to [ make a costume that is just a dot]
set size to [ the size you want] %
switch costume to [ the costume you want]
connect the blocks though. For some reason it does not let me connect em in this forum.
Also, if it’s not working, send the link to the project.
- Link2358
-
Scratcher
100+ posts
How do I zoom in more than the 150 limit?
For a more variable method than others mentioned, I've shared what I use here.
What it does is it has two costumes, a costume with no area, and so can be scaled up from 100 up to infinity; and a costume the size of the stage, which can handle all the sizes 100 downwards.
What it does is it has two costumes, a costume with no area, and so can be scaled up from 100 up to infinity; and a costume the size of the stage, which can handle all the sizes 100 downwards.
- Discussion Forums
- » Help with Scripts
-
» How do I zoom in more than the 150 limit?