From e6662edcb40ce571c21a9d4c62cdb32910b00070 Mon Sep 17 00:00:00 2001 From: "James B. Pollack" Date: Thu, 18 Feb 2016 08:57:06 -0800 Subject: [PATCH 1/3] revert step size change --- examples/html/entityProperties.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/html/entityProperties.html b/examples/html/entityProperties.html index b7240d43f7..1688e3cb7c 100644 --- a/examples/html/entityProperties.html +++ b/examples/html/entityProperties.html @@ -1165,9 +1165,9 @@
Position
-
X
-
Y
-
Z
+
X
+
Y
+
Z
@@ -1201,9 +1201,9 @@
Dimensions
-
X
-
Y
-
Z
+
X
+
Y
+
Z
@@ -1253,9 +1253,9 @@
Rotation
-
Pitch
-
Yaw
-
Roll
+
Pitch
+
Yaw
+
Roll
From acaa824cb507f6375c5f729a362f7a5607b7273d Mon Sep 17 00:00:00 2001 From: "James B. Pollack" Date: Thu, 18 Feb 2016 09:00:39 -0800 Subject: [PATCH 2/3] but only position --- examples/html/entityProperties.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/html/entityProperties.html b/examples/html/entityProperties.html index 1688e3cb7c..5ddddfbfea 100644 --- a/examples/html/entityProperties.html +++ b/examples/html/entityProperties.html @@ -1201,9 +1201,9 @@
Dimensions
-
X
-
Y
-
Z
+
X
+
Y
+
Z
@@ -1253,9 +1253,9 @@
Rotation
-
Pitch
-
Yaw
-
Roll
+
Pitch
+
Yaw
+
Roll
From 6f364de06243a52126363dc5e8a046bbd902cb03 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Thu, 18 Feb 2016 18:39:25 -0800 Subject: [PATCH 3/3] Add a QML document referencing the QML multimedia types to force inclusion in the build --- interface/resources/qml/ForceLoad.qml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 interface/resources/qml/ForceLoad.qml diff --git a/interface/resources/qml/ForceLoad.qml b/interface/resources/qml/ForceLoad.qml new file mode 100644 index 0000000000..55d8b98b1b --- /dev/null +++ b/interface/resources/qml/ForceLoad.qml @@ -0,0 +1,12 @@ +import QtQuick 2.0 +import QtMultimedia 5.5 + +Item { + Audio { + id: audio + autoLoad: true + autoPlay: true + loops: Audio.Infinite + } +} +