Skip to main content

MapCommandsExt

Trait MapCommandsExt 

Source
pub trait MapCommandsExt {
    // Required method
    fn spawn_map(
        &mut self,
        asset_server: &AssetServer,
        path: impl Into<String>,
    ) -> Entity;
}
Expand description

Extension trait for spawning maps via commands

Required Methods§

Source

fn spawn_map( &mut self, asset_server: &AssetServer, path: impl Into<String>, ) -> Entity

Spawn a map from an asset path

Returns the entity that will contain the map once loaded.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl MapCommandsExt for Commands<'_, '_>

Source§

fn spawn_map( &mut self, asset_server: &AssetServer, path: impl Into<String>, ) -> Entity

Implementors§