Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How can I make a big scrolling map?
- Mr_Hayden
-
Scratcher
22 posts
How can I make a big scrolling map?
So, I'm making a game where there is a map that is supposed to be zoomed out a lot. However, no matter how I scale it in the editor or with "set size to " blocks it stays at a steady size and won't go any bigger. Can anyone help?
- TheColaber
-
Scratcher
500+ posts
How can I make a big scrolling map?
Scratch has a size limit… to go past it, create a new costume that is blank and use the following code:
switch costume to [blank v]
set size to (Whatever num you want) %
switch costume to [map v]
- ogunmolo00
-
Scratcher
26 posts
How can I make a big scrolling map?
can you show me the coding? I think i can help 

- levihadfoundme
-
Scratcher
1 post
How can I make a big scrolling map?
how do i make a scrolling map size chager
- Spentine
-
Scratcher
1000+ posts
How can I make a big scrolling map?
how do i make a scrolling map size chagerUse this code (and create an empty costume)
Hope this helped!
when gf clicked
switch costume to (Empty Costume v)
set size to (amount :: grey)
switch costume to (Map v)
- Discussion Forums
- » Help with Scripts
-
» How can I make a big scrolling map?