From 184176a2a68c6526fe2c89bc5b5e376bc3d316a0 Mon Sep 17 00:00:00 2001 From: Shreeraj Jadhav Date: Wed, 16 Feb 2022 13:19:24 -0500 Subject: [PATCH] fix(View): set default showOrientationAxes false Set the default value of showOrientationAxes flag to false. Applications that want to use the default Axes should explicitly turn it ON. --- src/core/View.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/View.js b/src/core/View.js index 12634d8..0da1dbd 100644 --- a/src/core/View.js +++ b/src/core/View.js @@ -748,7 +748,7 @@ View.defaultProps = { pickingModes: [], showCubeAxes: false, pointerSize: 0, - showOrientationAxes: true, + showOrientationAxes: false, }; View.propTypes = {