Skip to content
Snippets Groups Projects
Verified Commit 982f5717 authored by Louis's avatar Louis :fire:
Browse files

Autofocus canvas in web after init

parent e1d2dadf
No related branches found
No related tags found
No related merge requests found
document.addEventListener('DOMContentLoaded', function() {
if ('MutationObserver' in window) {
const config = {
attributes: false,
childList: true,
subtree: false,
}
function onElementAdded(mutationsList, observer) {
for (const mutation of mutationsList) {
if (mutation.type === 'childList') {
if (mutation.addedNodes.length > 0) {
for (const node of mutation.addedNodes) {
if (node.nodeName.toLowerCase() === 'canvas') {
node.focus();
if (window.focusHandler) {
window.focusHandler.disconnect()
delete window.focusHandler
}
return
}
}
}
}
}
}
window.focusHandler = new MutationObserver(onElementAdded)
window.focusHandler.observe(document.body, config)
}
})
...@@ -103,5 +103,7 @@ ...@@ -103,5 +103,7 @@
</main> </main>
<link data-trunk rel="inline" href="../build/web/audio.js"/> <link data-trunk rel="inline" href="../build/web/audio.js"/>
<link data-trunk rel="inline" href="../build/web/autofocus.js"/>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -33,9 +33,9 @@ impl SpriteSheetConfig { ...@@ -33,9 +33,9 @@ impl SpriteSheetConfig {
#[derive(Default)] #[derive(Default)]
pub struct AssetHandles { pub struct AssetHandles {
pub(crate) images: HashMap<String, Handle<Image>>, pub images: HashMap<String, Handle<Image>>,
pub(crate) atlas: HashMap<String, Handle<TextureAtlas>>, pub atlas: HashMap<String, Handle<TextureAtlas>>,
pub(crate) sounds: HashMap<String, Handle<AudioSource>>, pub sounds: HashMap<String, Handle<AudioSource>>,
} }
impl SuppliesAudio for AssetHandles { impl SuppliesAudio for AssetHandles {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment