Mon Jun 17 07:37:21 PM EDT 2024
This commit is contained in:
parent
ebc3ccfea4
commit
462d6c5aaa
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_dirworld"
|
name = "bevy_dirworld"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
@ -8,6 +8,7 @@ anyhow = "1.0.83"
|
|||||||
|
|
||||||
[dependencies.bevy]
|
[dependencies.bevy]
|
||||||
version = "0.13"
|
version = "0.13"
|
||||||
|
features = ["file_watcher"]
|
||||||
|
|
||||||
[dependencies.bevy_rapier3d]
|
[dependencies.bevy_rapier3d]
|
||||||
version = "0.26"
|
version = "0.26"
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use bevy::prelude::*;
|
use bevy::prelude::*;
|
||||||
|
|
||||||
/// A tooltip on an object, which can be displayed.
|
/// A tooltip on an object, which can be displayed.
|
||||||
#[derive(Component)]
|
#[derive(Component)]
|
||||||
pub struct Tooltip(pub String);
|
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 std::path::PathBuf;
|
||||||
|
|
||||||
use bevy::prelude::*;
|
use bevy::{asset::io::AssetSource, prelude::*};
|
||||||
use events::DirworldNavigationEvent;
|
use events::DirworldNavigationEvent;
|
||||||
use resources::{Dirworld, DirworldConfig};
|
use resources::{Dirworld, DirworldConfig};
|
||||||
|
|
||||||
@ -25,7 +25,12 @@ pub struct DirworldPlugin {
|
|||||||
|
|
||||||
impl Plugin for DirworldPlugin {
|
impl Plugin for DirworldPlugin {
|
||||||
fn build(&self, app: &mut App) {
|
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()))
|
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>()
|
.add_event::<DirworldNavigationEvent>()
|
||||||
.init_resource::<Dirworld>();
|
.init_resource::<Dirworld>();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user