2 votes Vote

Limit the fps

Is it possible to limit the FPS of Ved?
If no then please add this option to limit the FPS to 60 or something. It happened now the second time that my computer just instantly turned off because it was probably having a temperature of over 70°C because of Ved. This never happened before. I mostly have around 200 FPS in Ved. So literally 140 of them are just useless FPS. They only make the battery go empty faster and make the PC very hot. Ved seems to be made in LÖVE. I also used LÖVE a time ago. Heres an example how I limited the FPS:

sleep = 0
function love.update()
if love.timer.getFPS() > 60 then
sleep = sleep + 0.001
end
love.timer.sleep(sleep)
end

r00ster , 08.06.2018, 09:32
Response from the site administrator
Dav999, 09.06.2018
Ved 1.4.0 will have an easier accessible FPS limiting option:
https://gitgud.io/Dav999/ved/commit/34fc9f2196280533a87871b52ad8a0eaa8e1374d
Idea status: completed

Comments

Leave a comment