mirror of
https://github.com/bevyengine/bevy
synced 2025-03-07 08:47:24 +00:00
add missing type registration for Monitor
(#16685)
# Objective  make `Monitor` reflectable by default ## Solution - register type
This commit is contained in:
parent
5b1f0b1ef5
commit
10e3cc72ad
1 changed files with 2 additions and 1 deletions
|
@ -164,7 +164,8 @@ impl Plugin for WindowPlugin {
|
|||
.register_type::<FileDragAndDrop>()
|
||||
.register_type::<WindowMoved>()
|
||||
.register_type::<WindowThemeChanged>()
|
||||
.register_type::<AppLifecycle>();
|
||||
.register_type::<AppLifecycle>()
|
||||
.register_type::<Monitor>();
|
||||
|
||||
// Register window descriptor and related types
|
||||
app.register_type::<Window>()
|
||||
|
|
Loading…
Add table
Reference in a new issue