Mon Jun 17 07:37:21 PM EDT 2024
This commit is contained in:
parent
ebc3ccfea4
commit
462d6c5aaa
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "bevy_dirworld"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
@ -8,6 +8,7 @@ anyhow = "1.0.83"
|
||||
|
||||
[dependencies.bevy]
|
||||
version = "0.13"
|
||||
features = ["file_watcher"]
|
||||
|
||||
[dependencies.bevy_rapier3d]
|
||||
version = "0.26"
|
||||
|
@ -1,5 +1,11 @@
|
||||
use std::path::PathBuf;
|
||||
|
||||
use bevy::prelude::*;
|
||||
|
||||
/// A tooltip on an object, which can be displayed.
|
||||
#[derive(Component)]
|
||||
pub struct Tooltip(pub String);
|
||||
|
||||
/// A marker component for entities spawned by dirworld handlers, i.e. they should be removed when the room changes.
|
||||
#[derive(Component)]
|
||||
pub struct DirworldEntity(pub PathBuf);
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
use std::path::PathBuf;
|
||||
|
||||
use bevy::prelude::*;
|
||||
use bevy::{asset::io::AssetSource, prelude::*};
|
||||
use events::DirworldNavigationEvent;
|
||||
use resources::{Dirworld, DirworldConfig};
|
||||
|
||||
@ -25,7 +25,12 @@ pub struct DirworldPlugin {
|
||||
|
||||
impl Plugin for DirworldPlugin {
|
||||
fn build(&self, app: &mut App) {
|
||||
info!("building");
|
||||
let path_string = self.path.to_string_lossy().to_string();
|
||||
app.insert_resource(DirworldConfig::new(self.path.clone()))
|
||||
.register_asset_source("dirworld", AssetSource::build()
|
||||
.with_reader(AssetSource::get_default_reader(path_string.clone()))
|
||||
.with_watcher(|_| None))
|
||||
.add_event::<DirworldNavigationEvent>()
|
||||
.init_resource::<Dirworld>();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user