Remove dead code
This commit is contained in:
parent
8a174c6c8b
commit
64b26b2a70
|
@ -1,11 +0,0 @@
|
||||||
use bevy::pbr::NotShadowCaster;
|
|
||||||
use bevy::prelude::*;
|
|
||||||
|
|
||||||
pub struct LightingPlugin;
|
|
||||||
impl Plugin for LightingPlugin {
|
|
||||||
fn build(&self, app: &mut App) {
|
|
||||||
app
|
|
||||||
// FIXME: adding these since they are missing
|
|
||||||
.register_type::<NotShadowCaster>();
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,9 +1,6 @@
|
||||||
pub mod camera;
|
pub mod camera;
|
||||||
pub use camera::*;
|
pub use camera::*;
|
||||||
|
|
||||||
pub mod lighting;
|
|
||||||
pub use lighting::*;
|
|
||||||
|
|
||||||
//pub mod relationships;
|
//pub mod relationships;
|
||||||
//pub use relationships::*;
|
//pub use relationships::*;
|
||||||
|
|
||||||
|
@ -22,6 +19,6 @@ use bevy::prelude::*;
|
||||||
pub struct CorePlugin;
|
pub struct CorePlugin;
|
||||||
impl Plugin for CorePlugin {
|
impl Plugin for CorePlugin {
|
||||||
fn build(&self, app: &mut App) {
|
fn build(&self, app: &mut App) {
|
||||||
app.add_plugins((LightingPlugin, CameraPlugin, PhysicsPlugin));
|
app.add_plugins((CameraPlugin, PhysicsPlugin));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue