overte-lubosz/interface/resources/qml/controller/xbox/LeftAnalogStick.qml
2017-11-13 16:37:28 +01:00

18 lines
229 B
QML

import QtQuick 2.1
import ".."
Item {
id: root
property int size: 64
width: size
height: size
property var device
AnalogStick {
size: size
controlIds: [ device.LX, device.LY ]
}
}