Working with different screen resolutions
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
Working with different screen resolutions
-
Last edited by Bicentric on Tue Jun 19, 2018 7:30 pm, edited 1 time in total.
Re: Working with different screen resolutions
I think you can just use love.graphics.scale before drawing anything
lf = love.filesystem
ls = love.sound
la = love.audio
lp = love.physics
lt = love.thread
li = love.image
lg = love.graphics
ls = love.sound
la = love.audio
lp = love.physics
lt = love.thread
li = love.image
lg = love.graphics
Re: Working with different screen resolutions
-
Last edited by Bicentric on Tue Jun 19, 2018 7:30 pm, edited 1 time in total.
Re: Working with different screen resolutions
Well, if the default resolution is 1280x960 and the user's resolution is 1024x600 (my netbook) you could do this to figure out the correct scale:
And then you just call love.graphics.scale(currentmode.scale, currentmode.scale) at the beginning of love.draw
Code: Select all
defW, defX = 1280, 960
modes = {
{800, 600},
{1024, 768},
{1152, 864},
{1280, 960}}
for i, v in ipairs(modes) do
v.scale = math.min(v[1]/defW, v[2]/defH)
end
lf = love.filesystem
ls = love.sound
la = love.audio
lp = love.physics
lt = love.thread
li = love.image
lg = love.graphics
ls = love.sound
la = love.audio
lp = love.physics
lt = love.thread
li = love.image
lg = love.graphics
Re: Working with different screen resolutions
-
Last edited by Bicentric on Tue Jun 19, 2018 7:30 pm, edited 1 time in total.
- Jasoco
- Inner party member
- Posts: 3728
- Joined: Mon Jun 22, 2009 9:35 am
- Location: Pennsylvania, USA
- Contact:
Re: Working with different screen resolutions
Yes, Pop always returns the coordinate system to the previous Push. You can nest Push and Pop as well. Not sure if there's a limit. But I've done many at once. Never hit a limit.
- DaedalusYoung
- Party member
- Posts: 413
- Joined: Sun Jul 14, 2013 8:04 pm
Re: Working with different screen resolutions
I did hit a limit during my tests. Just make an empty main.lua with a love.draw function, only calling the 'push'. For me, it crashed within a second, which is not very surprising.
So that means there's a limit to how many pushes you can stack.
So that means there's a limit to how many pushes you can stack.
Re: Working with different screen resolutions
-
Last edited by Bicentric on Tue Jun 19, 2018 7:30 pm, edited 1 time in total.
- Jasoco
- Inner party member
- Posts: 3728
- Joined: Mon Jun 22, 2009 9:35 am
- Location: Pennsylvania, USA
- Contact:
Re: Working with different screen resolutions
How many did you nest?DaedalusYoung wrote:I did hit a limit during my tests. Just make an empty main.lua with a love.draw function, only calling the 'push'. For me, it crashed within a second, which is not very surprising.
So that means there's a limit to how many pushes you can stack.
- slime
- Solid Snayke
- Posts: 3179
- Joined: Mon Aug 23, 2010 6:45 am
- Location: Nova Scotia, Canada
- Contact:
Re: Working with different screen resolutions
The limit is about 27 I believe.
Who is online
Users browsing this forum: Ahrefs [Bot], Bing [Bot], Google [Bot] and 8 guests