Skip to main content

IGmapPathAdjusterMethods

Trait IGmapPathAdjusterMethods 

Source
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§

Source

fn start(self)

Start() overload

Source

fn setup(self)

Setup() overload

Source

fn setup_colliders(self) -> bool

SetupColliders() overload

Source

fn setup_both_objects(self) -> bool

SetupBothObjects() overload

Source

fn on_disable(self)

OnDisable() overload

Source

fn update(self)

Update() overload

Source

fn adjust_ground(self)

AdjustGround() overload

Source

fn is_changed(self) -> i32

IsChanged() overload

Source

fn adjust_ground_point(self, index: impl Into<i32>)

AdjustGroundPoint(i32) overload

Source

fn adjust_both_spots(self)

AdjustBothSpots() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IGmapPathAdjuster> IGmapPathAdjusterMethods for __T

Available on crate feature root-gmappathadjuster only.