From a9aea9b47712f467d12a3fef40adf33653ddfe15 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Thu, 22 Oct 2015 15:53:19 -0700 Subject: [PATCH] Working on TestController display --- interface/resources/qml/TestControllers.qml | 31 +++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/TestControllers.qml b/interface/resources/qml/TestControllers.qml index a21735b3cc..482616203f 100644 --- a/interface/resources/qml/TestControllers.qml +++ b/interface/resources/qml/TestControllers.qml @@ -91,8 +91,7 @@ HifiControls.VrDialog { Hydra { device: root.hydra; width: 180 } } - Grid { - columns: 6 + Row { spacing: 4 ScrollingGraph { controlId: Controller.Actions.Yaw @@ -117,13 +116,41 @@ HifiControls.VrDialog { max: 2.0 size: 64 } + ScrollingGraph { controlId: Controller.Actions.StepYaw label: "StepYaw" + min: -20.0 + max: 20.0 + size: 64 + } + } + + Row { + ScrollingGraph { + controlId: Controller.Actions.TranslateZ + label: "TranslateZ" min: -2.0 max: 2.0 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