haw-gj13-game/src/game/scene.rs

11 lines
302 B
Rust
Raw Normal View History

2024-11-23 16:24:16 +01:00
use bevy::{core_pipeline::smaa::SmaaSpecializedRenderPipelines, prelude::*};
2024-11-23 16:13:54 +01:00
use bevy::{prelude::*, scene::ScenePlugin};
use bevy_editor_pls::EditorPlugin;
2024-11-22 22:39:00 +01:00
use bevy_rapier2d::prelude::*;
2024-11-23 01:40:50 +01:00
use crate::AppState;
2024-11-22 22:39:00 +01:00
pub(super) fn scene_plugin(app: &mut App) {
2024-11-23 16:13:54 +01:00
app.add_plugins(EditorPlugin::default());
2024-11-22 22:39:00 +01:00
}