pub trait IGmapPathAdjusterMethods: IGmapPathAdjuster {
// Provided methods
fn start(self) { ... }
fn setup(self) { ... }
fn setup_colliders(self) -> bool { ... }
fn setup_both_objects(self) -> bool { ... }
fn on_disable(self) { ... }
fn update(self) { ... }
fn adjust_ground(self) { ... }
fn is_changed(self) -> i32 { ... }
fn adjust_ground_point(self, index: impl Into<i32>) { ... }
fn adjust_both_spots(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn setup_colliders(self) -> bool
fn setup_colliders(self) -> bool
SetupColliders() overload
Sourcefn setup_both_objects(self) -> bool
fn setup_both_objects(self) -> bool
SetupBothObjects() overload
Sourcefn on_disable(self)
fn on_disable(self)
OnDisable() overload
Sourcefn adjust_ground(self)
fn adjust_ground(self)
AdjustGround() overload
Sourcefn is_changed(self) -> i32
fn is_changed(self) -> i32
IsChanged() overload
Sourcefn adjust_ground_point(self, index: impl Into<i32>)
fn adjust_ground_point(self, index: impl Into<i32>)
AdjustGroundPoint(i32) overload
Sourcefn adjust_both_spots(self)
fn adjust_both_spots(self)
AdjustBothSpots() 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: IGmapPathAdjuster> IGmapPathAdjusterMethods for __T
Available on crate feature
root-gmappathadjuster only.