Skip to content

Commit

Permalink
build(bevy_proc_gen): Add missing bevy_ui dep enable to the `debug-…
Browse files Browse the repository at this point in the history
…plugin` feature
  • Loading branch information
Henauxg committed May 17, 2024
1 parent 0c68dd2 commit f10ce3a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bevy_ghx_proc_gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ reflect = ["ghx_proc_gen/reflect"]
# Compiles the simple plugin and its systems
simple-plugin = []
# Compiles the debug plugin and its systems
debug-plugin = ["ghx_proc_gen/models-names", "bevy_ghx_grid/debug-plugin"]
debug-plugin = [
"ghx_proc_gen/models-names",
"bevy_ghx_grid/debug-plugin",
"bevy/bevy_ui", # A custom ECS-driven UI framework
]
# Enables picking through bevy_mod_picking. Used by the debug-plugin if enabled.
picking = ["dep:bevy_mod_picking"]
# Enables an egui editor panel to inspect nodes and paint models
Expand Down

0 comments on commit f10ce3a

Please sign in to comment.