oboy/src/qt/BackgroundMap.qml

26 lines
537 B
QML

import QtQuick 2.4
import QtQuick.Window 2.0
Window {
title: "Background maps"
// A background map is 32 x 32 tiles.
// Each tile is 8 x 8 pixels.
width: 32 * (16 + 1) + 1
height: 32 * (16 + 1) + 1
maximumWidth: width
minimumWidth: width
maximumHeight: height
minimumHeight: height
// BackgroundMapForm {
// anchors.fill: parent
// }
Image {
source: "image://oboy/bg_map"
anchors.fill: parent
smooth: false
fillMode: Image.PreserveAspectFit
}
}