How to turn this off? #220
-
Beta Was this translation helpful? Give feedback.
Answered by
aevyrie
Jun 26, 2023
Replies: 2 comments 1 reply
-
This is the debug plugin feature: Line 49 in 1f7df34 You can turn this off by either:
.add_plugins(
DefaultPickingPlugins.build()
.disable::<DebugPickingPlugin>()
) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
PatrickChodowski
-
Thank you for quick reply! Well, thats on my lack of knowledge about cargo.toml. I thought the features= will be enough :( |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is the debug plugin feature:
bevy_mod_picking/Cargo.toml
Line 49 in 1f7df34
You can turn this off by either:
DefaultPickingPlugins
, then disablingDebugPickingPlugin
: