Machst einfach:
Mit Runterskalierung bei >1920x1080:
Code:
{
"name" : "BackGround",
"type" : "expanded_image",
"x" : 0,
"y" : 0,
"x_scale" : float(SCREEN_WIDTH) / 1920.0,
"y_scale" : float(SCREEN_HEIGHT) / 1080.0,
"image" : "locale/de/ui/select.sub",
},
Mit Zentrierung auf jeder Bildschirmgröße:
Code:
{
"name" : "BackGround",
"type" : "image",
"x" : SCREEN_WIDTH / 2 - 1920 / 2,
"y" : SCREEN_HEIGHT / 2 - 1080 / 2,
"image" : "locale/de/ui/select.sub",
},