Hi,
I am using the new 3.4 alpha to create a 1920x1080 game and amd running into something I don't really understand. I've imported a background image, which looks in the editor like this (a small area):

But when I run this room in my game, it all looks blurry:

I am thinking that some kind of scaling or anti-aliasing is going on, so I tried to disabled it using:
game.disable_antialiasing = 1;
But that doesn't do anything.
I then tried to use the following:
player.ManualScaling = true;
player.Scaling=100;
Which made the character look better a little, but also there was some artifact at the bottom.
I would like to know how to fix this. The map resolution matches the game resolution and both are 1920x1080. Any help or links to the right references are appreciated.