[][src]Struct kiss3d::resource::PlanarMaterialManager

pub struct PlanarMaterialManager { /* fields omitted */ }

The material manager.

Upon construction, it contains:

  • the object material, used as the default to render objects.
  • the normals material, used do display an object normals.

It keeps a cache of already-loaded materials. Note that this is only a cache, nothing more. Thus, its usage is not required to load materials.

Methods

impl PlanarMaterialManager[src]

pub fn new() -> PlanarMaterialManager[src]

Creates a new material manager.

pub fn get_global_manager<T, F: FnMut(&mut PlanarMaterialManager) -> T>(
    f: F
) -> T
[src]

Mutably applies a function to the material manager.

pub fn get_default(&self) -> Rc<RefCell<Box<dyn PlanarMaterial + 'static>>>[src]

Gets the default material to draw objects.

pub fn get(
    &mut self,
    name: &str
) -> Option<Rc<RefCell<Box<dyn PlanarMaterial + 'static>>>>
[src]

Get a material with the specified name. Returns None if the material is not registered.

pub fn add(
    &mut self,
    material: Rc<RefCell<Box<dyn PlanarMaterial + 'static>>>,
    name: &str
)
[src]

Adds a material with the specified name to this cache.

pub fn remove(&mut self, name: &str)[src]

Removes a mesh from this cache.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 

impl<T> Downcast for T where
    T: Any