mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-13 18:42:38 +02:00
31 lines
564 B
QML
31 lines
564 B
QML
import QtQuick 2.1
|
|
|
|
import "hydra"
|
|
|
|
Item {
|
|
id: root
|
|
width: 480
|
|
height: width * 3.0 / 4.0
|
|
property var device
|
|
property real scale: width / 480
|
|
property real rightOffset: (width / 2) * scale
|
|
|
|
Image {
|
|
anchors.fill: parent
|
|
source: "hydra/hydra.png"
|
|
|
|
HydraStick {
|
|
leftStick: true
|
|
scale: root.scale
|
|
device: root.device
|
|
}
|
|
|
|
|
|
HydraStick {
|
|
leftStick: false
|
|
scale: root.scale
|
|
device: root.device
|
|
}
|
|
|
|
}
|
|
}
|