Working on TestController display

This commit is contained in:
Brad Davis 2015-10-22 15:53:19 -07:00
parent e40741b5cb
commit a9aea9b477

View file

@ -91,8 +91,7 @@ HifiControls.VrDialog {
Hydra { device: root.hydra; width: 180 } Hydra { device: root.hydra; width: 180 }
} }
Grid { Row {
columns: 6
spacing: 4 spacing: 4
ScrollingGraph { ScrollingGraph {
controlId: Controller.Actions.Yaw controlId: Controller.Actions.Yaw
@ -117,13 +116,41 @@ HifiControls.VrDialog {
max: 2.0 max: 2.0
size: 64 size: 64
} }
ScrollingGraph { ScrollingGraph {
controlId: Controller.Actions.StepYaw controlId: Controller.Actions.StepYaw
label: "StepYaw" label: "StepYaw"
min: -20.0
max: 20.0
size: 64
}
}
Row {
ScrollingGraph {
controlId: Controller.Actions.TranslateZ
label: "TranslateZ"
min: -2.0 min: -2.0
max: 2.0 max: 2.0
size: 64 size: 64
} }
ScrollingGraph {
controlId: Controller.Actions.Forward
label: "Forward"
min: -2.0
max: 2.0
size: 64
}
ScrollingGraph {
controlId: Controller.Actions.Backward
label: "Backward"
min: -2.0
max: 2.0
size: 64
}
} }
} }
} // dialog } // dialog