pub trait ISampleWaveMethods: ISampleWave {
// Provided methods
fn start(self) { ... }
fn update(self) { ... }
fn update_wave(self) { ... }
fn reset_wave(self) { ... }
fn update_color(self, color: impl Into<Color>) { ... }
fn create_material(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn update_wave(self)
fn update_wave(self)
UpdateWave() overload
Sourcefn reset_wave(self)
fn reset_wave(self)
ResetWave() overload
Sourcefn update_color(self, color: impl Into<Color>)
fn update_color(self, color: impl Into<Color>)
UpdateColor(crate::unity_engine::color::Color) overload
Sourcefn create_material(self)
fn create_material(self)
CreateMaterial() 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: ISampleWave> ISampleWaveMethods for __T
Available on crate feature
root-samplewave only.