zincjs 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -47
- package/build/zinc.frontend.js +1 -1
- package/build/zinc.js +9 -9
- package/build/zinc.js.map +1 -1
- package/package.json +2 -2
- package/src/controls.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zincjs",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "ZincJS (Web-based-Zinc-Visualisation)",
|
|
5
5
|
"main": "build/zinc.js",
|
|
6
6
|
"directories": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"lodash": "^4.17.19",
|
|
61
61
|
"promise-polyfill": "^8.1.3",
|
|
62
62
|
"three": "^0.130.1",
|
|
63
|
-
"three-spritetext": "
|
|
63
|
+
"three-spritetext": "1.6.2",
|
|
64
64
|
"url-loader": "^2.1.0",
|
|
65
65
|
"url-polyfill": "^1.1.7",
|
|
66
66
|
"webworkify-webpack": "^2.1.5"
|
package/src/controls.js
CHANGED
|
@@ -1594,7 +1594,7 @@ const CameraAutoTumble = function (tumbleDirectionIn, tumbleRateIn, stopOnCamera
|
|
|
1594
1594
|
/**
|
|
1595
1595
|
* @author mrdoob / http://mrdoob.com/
|
|
1596
1596
|
*/
|
|
1597
|
-
StereoCameraZoomFixed = function () {
|
|
1597
|
+
const StereoCameraZoomFixed = function () {
|
|
1598
1598
|
|
|
1599
1599
|
this.type = 'StereoCamera';
|
|
1600
1600
|
|
|
@@ -1732,7 +1732,7 @@ const StereoEffect = function ( renderer ) {
|
|
|
1732
1732
|
* W3C Device Orientation control (http://w3c.github.io/deviceorientation/spec-source-orientation.html)
|
|
1733
1733
|
*/
|
|
1734
1734
|
|
|
1735
|
-
ModifiedDeviceOrientationControls = function ( object ) {
|
|
1735
|
+
const ModifiedDeviceOrientationControls = function ( object ) {
|
|
1736
1736
|
|
|
1737
1737
|
const scope = this;
|
|
1738
1738
|
|