-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Defer initialization until end of aframe script or manual ready signal
Co-authored-by: Chris Chua <[email protected]>
- Loading branch information
Showing
8 changed files
with
54 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* global CustomEvent */ | ||
|
||
/** | ||
* Flag indicating if A-Frame can initialize the scene or should wait. | ||
*/ | ||
module.exports.isReady = false; | ||
|
||
/** | ||
* Waits for the document to be ready and switches the isReady flag once it is. | ||
*/ | ||
function waitForDocumentReadyState () { | ||
if (document.readyState === 'complete') { | ||
ready(); | ||
return; | ||
} | ||
|
||
document.addEventListener('readystatechange', function onReadyStateChange () { | ||
if (document.readyState !== 'complete') { return; } | ||
document.removeEventListener('readystatechange', onReadyStateChange); | ||
ready(); | ||
}); | ||
} | ||
module.exports.waitForDocumentReadyState = waitForDocumentReadyState; | ||
|
||
/** | ||
* Signals A-Frame that everything is ready to initialize. | ||
*/ | ||
function ready () { | ||
if (module.exports.isReady) { return; } | ||
module.exports.isReady = true; | ||
setTimeout(function () { | ||
document.dispatchEvent(new CustomEvent('aframeready')); | ||
}); | ||
} | ||
module.exports.ready = ready; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters