fix(ios): pin voxel render target scale

This commit is contained in:
Adrian Castro
2026-08-01 13:29:51 +02:00
parent eb231d221e
commit 1a69489305
4 changed files with 16 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
local V = ...
local PixelCanvas = {}
function PixelCanvas.new(w, h)
return pcall(love.graphics.newCanvas, w, h, { dpiscale = 1 })
end
return PixelCanvas