No more errors with DB in sponza streaming
This commit is contained in:
parent
dfd9b8b3d9
commit
35a8055fc6
|
@ -3,11 +3,13 @@ extends ./prototype_interactive
|
||||||
block title
|
block title
|
||||||
title #{title} - Prototype - Arrows
|
title #{title} - Prototype - Arrows
|
||||||
|
|
||||||
|
block prepend js
|
||||||
|
script window.DB_DISABLED = true;
|
||||||
|
|
||||||
block mainjs
|
block mainjs
|
||||||
script locked = false;
|
script locked = false;
|
||||||
script(src="/static/js/prototypeinteractive.min.js")
|
script(src="/static/js/prototypeinteractive.min.js")
|
||||||
script initMainScene = L3D.initSponza
|
script initMainScene = L3D.initSponza
|
||||||
script L3D.BD.disable();
|
|
||||||
|
|
||||||
block configjs
|
block configjs
|
||||||
script Recommendation = L3D.ArrowRecommendation;
|
script Recommendation = L3D.ArrowRecommendation;
|
||||||
|
|
|
@ -41,7 +41,7 @@ L3D.DB.Private.sendData = function(url, data, force) {
|
||||||
* @memberof L3D.DB.Private
|
* @memberof L3D.DB.Private
|
||||||
* @type {Boolean}
|
* @type {Boolean}
|
||||||
*/
|
*/
|
||||||
L3D.DB.Private.enabled = true;
|
L3D.DB.Private.enabled = !window.DB_DISABLED;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enables the requests
|
* Enables the requests
|
||||||
|
|
Loading…
Reference in New Issue