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
|
|
|
}
|