Looking for a zoom out extension

Heya!

I’m relatively new to make code, and I’ve been looking for a zoom out extension for my game, A Fisherman’s Life for me, so I can see the whole tilemap at once, I’ve seen some stuff about making a new, smaller tilemap so we can see it all. But I don’t think that’s what I’m looking for. Any way I may be able to do this? Thanks!

3 Likes

kiwiphoenix364/pxt-zoom or kiwiphoenix364/pxt-beta-screen-effects – Zoom in and out

I forgot who made it. srry.

1 Like

You could try the mini-map extension to see the whole map, or increasing screen resolution, though I don’t usually like doing that because you can only change it once, at the start of the game, and a lot of extensions become buggy or don’t work with other screen resolutions.

you can’t zoom out, but you could increase the screensize and then zoom in with the zoom extension. However, i think you’re better off just using the minimap extension! you can find it in the default extension list

for non default extensions defo use awesome arcade it is indeed awesome

1 Like

there is a zoom extension, but It wont do what I think you want, I’m assuming you just want to increase the size of the screen yes?

if that is what you want, you can switch to JavaScript and copy paste this at the top: namespace userconfig {
export const ARCADE_SCREEN_WIDTH = 160
export const ARCADE_SCREEN_HEIGHT = 120
}

you can change the numbers to change the resolution of your game - you can switch back to blocks mode afterward.

also, if you don’t want to change the resolution, you can install the tilemap utils extension and use 8x8 tiles instead of 16x16.

2 Likes

this will let you zoom in and out (I believe that negative or <1 zoom zooms out) https://github.com/kiwiphoenix364/pxt-zoom

but you’ll probably need to increase the screen resolution instead and zoom in everywhere else

1 Like

I’ve tried this, but it simply makes the edges black. I’d like to see all of it, and for a short period of time. Specifically so I can see an animation that is usually out of view. And then go back to normal. Is this possible?

How might I increase the screen size? Preferably in blocks.

1 Like

change to javascript, paste this and then convert back you’ll get a grey block. you can’t use it in coding tho it only works when run at the start of yr code
namespace userconfig {
export const ARCADE_SCREEN_WIDTH = 160
export const ARCADE_SCREEN_HEIGHT = 120
}

1 Like

I like that its just is it at all possible to do with out this and I’d prefer if I could change mid game now is it possible to trick the game to change the const to a let so we can += or -=

1 Like

its not possible

1 Like

well is it possilbe to zoom in and of a tilmap so i can get the whole thing but still have the same detail

edit: like this

1 Like

OH theres a trick that Lucas did in Blast and Slash (My gamejam game!) where the screen size was doubled with a 2x zoom. (so it looks like normal screen size) This allows you to zoom out and retain pixel cleaness.

1 Like

with this

I got

with still room at the bottom of the screen but nice enough but I don’t know if I’ll use this because this i as big as I can get with zoom to get it all but the pixels are a little messed up

1 Like

Why are you zooming 0.99? Surely just do 2

1 Like

because 2 was too far i could not see it all and even with 0.99 I could not move up for some reason