Skip to content

Commit

Permalink
Minor cleanups
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Della Vedova <[email protected]>
  • Loading branch information
luca-della-vedova committed Sep 12, 2024
1 parent ef513f9 commit 193fad7
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion rmf_site_editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ serde_yaml = "0.8.23"
serde_json = "1.0"
wasm-bindgen = "0.2.87"
futures-lite = "1.12.0"
bevy = { version = "0.12", features = ["pnm", "jpeg", "tga", "dynamic_linking"] }
bevy = { version = "0.12", features = ["pnm", "jpeg", "tga"] }
dirs = "5.0"
thread_local = "*"
geo = "0.27"
Expand Down
2 changes: 0 additions & 2 deletions rmf_site_editor/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#[allow(warnings)]
use bevy::{app::ScheduleRunnerPlugin, log::LogPlugin, pbr::DirectionalLightShadowMap, prelude::*};
use bevy_egui::EguiPlugin;
use main_menu::MainMenuPlugin;
// use warehouse_generator::WarehouseGeneratorPlugin;
#[cfg(not(target_arch = "wasm32"))]
use clap::Parser;
#[cfg(target_arch = "wasm32")]
Expand Down
6 changes: 3 additions & 3 deletions rmf_site_editor/src/site/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ pub use physical_camera::*;
pub mod pose;
pub use pose::*;

pub mod primitive_shape;
pub use primitive_shape::*;

pub mod recall_plugin;
pub use recall_plugin::RecallPlugin;

pub mod sdf;
pub use sdf::*;

pub mod save;
pub use save::*;

Expand Down
File renamed without changes.
3 changes: 0 additions & 3 deletions rmf_site_editor/src/widgets/inspector/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,6 @@ pub use inspect_texture::*;
pub mod inspect_value;
pub use inspect_value::*;

//pub mod inspect_workcell_parent;
//pub use inspect_workcell_parent::*;

use crate::{
interaction::Selection,
site::{Category, SiteID},
Expand Down
1 change: 0 additions & 1 deletion rmf_site_editor/src/widgets/workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ use crate::widgets::{FileMenu, MenuDisabled, MenuEvent, MenuItem, TextMenuItem};
use crate::{AppState, CreateNewWorkspace, WorkspaceLoader, WorkspaceSaver};
use bevy::prelude::*;

// TODO(luca) fill fields with callbacks used to create / load / save workspaces
#[derive(Default)]
pub struct WorkspaceMenuPlugin {}

Expand Down

0 comments on commit 193fad7

Please sign in to comment.