Don't want to add null overrides for things that were not there already
This commit is contained in:
Blair MacIntyre 2018-09-16 10:22:26 -04:00
Родитель 309d4848e6
Коммит f206238246
1 изменённых файлов: 25 добавлений и 22 удалений

Просмотреть файл

@ -1,22 +1,25 @@
XRDisplay = null
XRSession = null
XRSessionCreateParameters = null
Reality = null
XRPointCloud = null;
XRLightEstimate = null;
XRAnchor = null;
XRPlaneAnchor = null;
XRFaceAnchor = null;
XRImageAnchor = null;
XRAnchorOffset = null;
XRStageBounds = null;
XRStageBoundsPoint = null;
XRPresentationFrame = null;
XRView = null;
XRViewport = null;
XRCoordinateSystem = null;
XRViewPose = null;
XRLayer = null;
XRWebGLLayer = null
XRVideoFrame = null;
/* if there is a navigator.xr, clear it out */
if(typeof navigator.xr != 'undefined') {
if(typeof XRDisplay != 'undefined') { XRDisplay = null }
if(typeof XRSession != 'undefined') { XRSession = null }
if(typeof XRSessionCreateParameters != 'undefined') { XRSessionCreateParameters = null }
if(typeof Reality != 'undefined') { Reality = null }
if(typeof XRPointCloud != 'undefined') { XRPointCloud = null }
if(typeof XRLightEstimate != 'undefined') { XRLightEstimate = null }
if(typeof XRAnchor != 'undefined') { XRAnchor = null }
if(typeof XRPlaneAnchor != 'undefined') { XRPlaneAnchor = null }
if(typeof XRFaceAnchor != 'undefined') { XRFaceAnchor = null }
if(typeof XRImageAnchor != 'undefined') { XRImageAnchor = null }
if(typeof XRAnchorOffset != 'undefined') { XRAnchorOffset = null }
if(typeof XRStageBounds != 'undefined') { XRStageBounds = null }
if(typeof XRStageBoundsPoint != 'undefined') { XRStageBoundsPoint = null }
if(typeof XRPresentationFrame != 'undefined') { XRPresentationFrame = null }
if(typeof XRView != 'undefined') { XRView = null }
if(typeof XRViewport != 'undefined') { XRViewport = null }
if(typeof XRCoordinateSystem != 'undefined') { XRCoordinateSystem = null }
if(typeof XRViewPose != 'undefined') { XRViewPose = null }
if(typeof XRLayer != 'undefined') { XRLayer = null }
if(typeof XRWebGLLayer != 'undefined') { XRWebGLLayer = null }
if(typeof XRVideoFrame != 'undefined') { XRVideoFrame = null }
//navigator.xr = null;
}