This site requires JavaScript, please enable it in your browser!
Greenfoot back
Staronig
Staronig wrote ...

2020/7/11

Is there a way to zoom in on the World?

Staronig Staronig

2020/7/11

#
I am currently creating a simple Jump n Run and my images are small like 32x32 so the whole world is just 320x320 pixels big. But playing on such a small screen is annoying because everything is hard to see. I could scale every Image up and change everything so a 960x960 screen behaves similar to a 320x320 screen but is there a better way?
Roshan123 Roshan123

2020/7/11

#
1. go to MyWorld 2. and try this
1
2
3
4
public MyWorld()
{
super(805,605,1) \\world size
}
danpost danpost

2020/7/11

#
Staronig wrote...
I could scale every Image up and change everything so a 960x960 screen behaves similar to a 320x320 screen but is there a better way?
All images will have to be scaled somehow -- either by using an image editor or by code.
You need to login to post a reply.