pub trait IMaterialInstanceMethods: IMaterialInstance {
// Provided methods
fn start(self) { ... }
fn update(self) { ... }
fn on_validate(self) { ... }
fn create_instance(self) { ... }
fn update_material(self) { ... }
fn reload(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_validate(self)
fn on_validate(self)
OnValidate() overload
Sourcefn create_instance(self)
fn create_instance(self)
CreateInstance() overload
Sourcefn update_material(self)
fn update_material(self)
UpdateMaterial() overload
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.
Implementors§
impl<__T: IMaterialInstance> IMaterialInstanceMethods for __T
Available on crate feature
root-materialinstance only.