You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cargo run --example minimal --no-default-features --features="debug"
I expected the debug text to appear whenever my mouse hovers the app window; instead, nothing appears.
Instead, I have to do:
cargo run --example minimal --no-default-features --features "debug,backend_bevy_ui"
Then the debug text appears.
Also, it seems to be specific to backend_bevy_ui; when I enable only the features it includes, but not backend_bevy_ui itself, the debug text still doesn't appear:
cargo run --example minimal --no-default-features --features "debug,bevy_picking_ui,bevy_ui,bevy_color"
The text was updated successfully, but these errors were encountered:
zhaop
changed the title
The debug feature's tooltip does not appear unless the backend_bevy_ui feature is also enabled
cargo features: debug depends on backend_bevy_ui being enabled
Jul 21, 2024
zhaop
changed the title
cargo features: debug depends on backend_bevy_ui being enabled
Crate features: debug depends on backend_bevy_ui being enabled
Jul 21, 2024
When I run:
cargo run --example minimal --no-default-features --features="debug"
I expected the debug text to appear whenever my mouse hovers the app window; instead, nothing appears.
Instead, I have to do:
cargo run --example minimal --no-default-features --features "debug,backend_bevy_ui"
Then the debug text appears.
Also, it seems to be specific to
backend_bevy_ui
; when I enable only the features it includes, but notbackend_bevy_ui
itself, the debug text still doesn't appear:cargo run --example minimal --no-default-features --features "debug,bevy_picking_ui,bevy_ui,bevy_color"
The text was updated successfully, but these errors were encountered: