jakobhellermann / bevy-inspector-egui

Inspector plugin for the bevy game engine
Apache License 2.0
1.15k stars 169 forks source link

Set gizmo mode throws error for GizmoModes #203

Open ASoldo opened 2 months ago

ASoldo commented 2 months ago

https://github.com/jakobhellermann/bevy-inspector-egui/blob/12b932675be73baddf7b51d9da57f19ca136d60f/crates/bevy-inspector-egui/examples/integrations/egui_dock.rs#L123C1-L125C43

These are the options now: image

is this how we should update code? :

        (KeyCode::KeyR, GizmoMode::RotateView),
        (KeyCode::KeyT, GizmoMode::TranslateView),
        (KeyCode::KeyS, GizmoMode::ScaleUniform),

But I don't see gizmos showing.