Difference between revisions of "NoHighDPI"

m
m (Added: Other Languages)
Line 27: Line 27:
 
{{#set:Author=User:Floatingbanana}}
 
{{#set:Author=User:Floatingbanana}}
 
[[Category:Libraries]]
 
[[Category:Libraries]]
 +
== Other Languages ==
 +
{{i18n|NoHighDPI}}

Revision as of 06:15, 15 December 2019

This library allows you to disable High DPI scaling on Android devices.

How to use

You just need to do this:

nohdpi = require "nohighdpi"

function love.load()
    --Pass "graphics", "mouse" and/or "touch"
    --as arguments to replace the given modules.
    --If you don't give any arguments, then
    --all modules will be replaced.
    nohighdpi:replace()
end

And voilà, you can use LÖVE normally without worrying about DPI scaling!


Other Languages