Hi there.
I’m a big fan of old games, so I’m working on some low-res projects. However, I cannot get cooperation from the simulator. I haven’t built for Android or iOS yet, so maybe it’s nothing, but whenever I start the sim, the image shows up as blurry. And by blurry, I don’t mean anti-aliased. It looks resampled or filtered.
I’m using a map with Lime right now, so that may also be an issue, but here’s the app code:
[lua]local back = display.newRect(0, 0, display.contentWidth, display.contentHeight)
back:setFillColor(165, 210, 255)
local lime = require (“lime”)
local map = lime.loadMap(“test.tmx”)
local visual = lime.createVisual(map)[/lua]
And here is my config.lua:
[lua]application = {
content = {
width = 160,
height = 240,
scale = “zoomStretch”,
fps = 30,
xAlign = “left”,
yAlign=“top”,
antialias=false
}
}[/lua]
I’d really like to see the blur gone if at all possible. Thanks. Any help is appreciated. [import]uid: 30399 topic_id: 22919 reply_id: 322919[/import]