pub struct ClientBundleSources<'a> {
pub sprites_dir: &'a Path,
pub paperdoll_dir: Option<&'a Path>,
pub player_presentation: Option<&'a Path>,
pub player_art_dir: Option<&'a Path>,
pub client_settings: Option<&'a Path>,
pub terrain_kinds: Option<&'a Path>,
}Expand description
Roots assembled into one installed-client Firebase bundle.
Fields§
§sprites_dir: &'a Path§paperdoll_dir: Option<&'a Path>§player_presentation: Option<&'a Path>§player_art_dir: Option<&'a Path>assets/gfx/player → synced as player/ (legacy atlas fallback).
client_settings: Option<&'a Path>assets/config/client-settings.yaml → config/client-settings.yaml.
terrain_kinds: Option<&'a Path>assets/world/terrain-kinds.yaml → presentation/terrain-kinds.yaml.
Implementations§
Source§impl<'a> ClientBundleSources<'a>
impl<'a> ClientBundleSources<'a>
Trait Implementations§
Source§impl<'a> Clone for ClientBundleSources<'a>
impl<'a> Clone for ClientBundleSources<'a>
Source§fn clone(&self) -> ClientBundleSources<'a>
fn clone(&self) -> ClientBundleSources<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for ClientBundleSources<'a>
Auto Trait Implementations§
impl<'a> Freeze for ClientBundleSources<'a>
impl<'a> RefUnwindSafe for ClientBundleSources<'a>
impl<'a> Send for ClientBundleSources<'a>
impl<'a> Sync for ClientBundleSources<'a>
impl<'a> Unpin for ClientBundleSources<'a>
impl<'a> UnsafeUnpin for ClientBundleSources<'a>
impl<'a> UnwindSafe for ClientBundleSources<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more