Mon Jun 17 07:37:21 PM EDT 2024

This commit is contained in:
Silas Bartha 2024-06-17 19:37:21 -04:00
parent ebc3ccfea4
commit 462d6c5aaa
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2
3 changed files with 14 additions and 2 deletions

View File

@ -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"

View File

@ -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);

View File

@ -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>();
}