-
-
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
55 additions
and
58 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.canInitializeElements = false; | ||
|
||
/** | ||
* Waits for the document to be ready. | ||
*/ | ||
function waitForDocumentReadyState () { | ||
if (document.readyState === 'complete') { | ||
emitReady(); | ||
return; | ||
} | ||
|
||
document.addEventListener('readystatechange', function onReadyStateChange () { | ||
if (document.readyState !== 'complete') { return; } | ||
document.removeEventListener('readystatechange', onReadyStateChange); | ||
emitReady(); | ||
}); | ||
} | ||
module.exports.waitForDocumentReadyState = waitForDocumentReadyState; | ||
|
||
/** | ||
* Signals A-Frame that everything is ready to initialize. | ||
*/ | ||
function emitReady () { | ||
if (module.exports.canInitializeElements) { return; } | ||
module.exports.canInitializeElements = true; | ||
setTimeout(function () { | ||
document.dispatchEvent(new CustomEvent('aframeready')); | ||
}); | ||
} | ||
module.exports.emitReady = emitReady; |
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