pub trait IGmapSpotAdjusterMethods: IGmapSpotAdjuster {
// Provided methods
fn start(self) { ... }
fn on_validate(self) { ... }
fn update(self) { ... }
fn setup_colliders(self) { ... }
fn adjust_ground(self, diff: impl Into<Vector3>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_validate(self)
fn on_validate(self)
OnValidate() overload
Sourcefn setup_colliders(self)
fn setup_colliders(self)
SetupColliders() overload
Sourcefn adjust_ground(self, diff: impl Into<Vector3>)
fn adjust_ground(self, diff: impl Into<Vector3>)
AdjustGround(crate::unity_engine::vector3::Vector3) 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: IGmapSpotAdjuster> IGmapSpotAdjusterMethods for __T
Available on crate feature
app-gmapspotadjuster only.