pub trait IWindManagerMethods: IWindManager {
// Provided methods
fn start(self) { ... }
fn update(self) { ... }
fn calculate(self, pos: impl Into<Vector3>) -> Vector3 { ... }
fn create_actor(self) -> WindActor { ... }
fn create_sampler(self) -> WindSampler { ... }
fn on_validate(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn calculate(self, pos: impl Into<Vector3>) -> Vector3
fn calculate(self, pos: impl Into<Vector3>) -> Vector3
Calculate(crate::unity_engine::vector3::Vector3) overload
Sourcefn create_actor(self) -> WindActor
fn create_actor(self) -> WindActor
CreateActor() overload
Sourcefn create_sampler(self) -> WindSampler
fn create_sampler(self) -> WindSampler
CreateSampler() overload
Sourcefn on_validate(self)
fn on_validate(self)
OnValidate() 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: IWindManager> IWindManagerMethods for __T
Available on crate feature
root-windmanager only.