Skip to content

Add advanced entity outline calculations #222

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ unused_qualifications = "warn"
bevy = { git = "https://github.com/bevyengine/bevy.git", rev = "a3d406dd497205253e34ace757ab0076d50eec14", features = [
"wayland",
] }
bevy_render = { git = "https://github.com/bevyengine/bevy.git", rev = "a3d406dd497205253e34ace757ab0076d50eec14" }
bevy_derive = { git = "https://github.com/bevyengine/bevy.git", rev = "a3d406dd497205253e34ace757ab0076d50eec14" }
bevy_macro_utils = { git = "https://github.com/bevyengine/bevy.git", rev = "a3d406dd497205253e34ace757ab0076d50eec14" }
thiserror = "2.0"
Expand Down
1 change: 1 addition & 0 deletions bevy_editor_panes/bevy_3d_viewport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ bevy_editor_cam.workspace = true
bevy_editor_styles.workspace = true
bevy_infinite_grid.workspace = true
bevy_editor_core.workspace = true
bevy_render.workspace = true

[lints]
workspace = true
6 changes: 3 additions & 3 deletions bevy_editor_panes/bevy_3d_viewport/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ use bevy_infinite_grid::{InfiniteGrid, InfiniteGridPlugin, InfiniteGridSettings}
use bevy_pane_layout::prelude::*;
use view_gizmo::{spawn_view_gizmo_target_texture, ViewGizmoPlugin};

use crate::outline_gizmo::OutlineGizmoPlugin;
use crate::selection_box::SelectionBoxPlugin;

mod outline_gizmo;
mod selection_box;
mod view_gizmo;

/// The identifier for the 3D Viewport.
Expand All @@ -47,7 +47,7 @@ impl Plugin for Viewport3dPanePlugin {
app.add_plugins(InfiniteGridPlugin);
}

app.add_plugins((DefaultEditorCamPlugins, ViewGizmoPlugin, OutlineGizmoPlugin))
app.add_plugins((DefaultEditorCamPlugins, ViewGizmoPlugin, SelectionBoxPlugin))
.add_systems(Startup, setup)
.add_systems(
PreUpdate,
Expand Down
81 changes: 0 additions & 81 deletions bevy_editor_panes/bevy_3d_viewport/src/outline_gizmo.rs

This file was deleted.

Loading