Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Bevy 2D Template
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Microhacks
Bevy 2D Template
Commits
982f5717
Verified
Commit
982f5717
authored
2 years ago
by
Louis
Browse files
Options
Downloads
Patches
Plain Diff
Autofocus canvas in web after init
parent
e1d2dadf
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
build/web/autofocus.js
+31
-0
31 additions, 0 deletions
build/web/autofocus.js
game_core/index.html
+2
-0
2 additions, 0 deletions
game_core/index.html
game_core/src/assets/resources.rs
+3
-3
3 additions, 3 deletions
game_core/src/assets/resources.rs
with
36 additions
and
3 deletions
build/web/autofocus.js
0 → 100644
+
31
−
0
View file @
982f5717
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
)
}
})
This diff is collapsed.
Click to expand it.
game_core/index.html
+
2
−
0
View file @
982f5717
...
@@ -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
This diff is collapsed.
Click to expand it.
game_core/src/assets/resources.rs
+
3
−
3
View file @
982f5717
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment