Skip to main content

IGmapLineRendererMethods

Trait IGmapLineRendererMethods 

Source
pub trait IGmapLineRendererMethods: IGmapLineRenderer {
Show 15 methods // Provided methods fn awake(self) { ... } fn try_initialize(self) { ... } fn start(self) { ... } fn get_line_appear_speed(self) -> i32 { ... } fn draw_line_tick(self) -> (bool, Vector3) { ... } fn set_visible(self, value: impl Into<bool>) { ... } fn is_visible(self) -> bool { ... } fn is_active_endpoints(self) -> bool { ... } fn build_poinsts(self) { ... } fn build_line(self) { ... } fn set_line_renderer_length(self, length: impl Into<i32>) { ... } fn start_appear(self) { ... } fn clear_draw_line(self) { ... } fn get_gmap_spots(self) -> Array<GmapSpot> { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn awake(self)

Awake() overload

Source

fn try_initialize(self)

TryInitialize() overload

Source

fn start(self)

Start() overload

Source

fn get_line_appear_speed(self) -> i32

GetLineAppearSpeed() overload

Source

fn draw_line_tick(self) -> (bool, Vector3)

DrawLineTick(*mutcrate::unity_engine::vector3::Vector3) overload

Source

fn set_visible(self, value: impl Into<bool>)

SetVisible(bool) overload

Source

fn is_visible(self) -> bool

IsVisible() overload

Source

fn is_active_endpoints(self) -> bool

IsActiveEndpoints() overload

Source

fn build_poinsts(self)

BuildPoinsts() overload

Source

fn build_line(self)

BuildLine() overload

Source

fn set_line_renderer_length(self, length: impl Into<i32>)

SetLineRendererLength(i32) overload

Source

fn start_appear(self)

StartAppear() overload

Source

fn clear_draw_line(self)

ClearDrawLine() overload

Source

fn get_gmap_spots(self) -> Array<GmapSpot>

GetGmapSpots() 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: IGmapLineRenderer> IGmapLineRendererMethods for __T

Available on crate feature app-gmaplinerenderer only.