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§
Sourcefn try_initialize(self)
fn try_initialize(self)
TryInitialize() overload
Sourcefn get_line_appear_speed(self) -> i32
fn get_line_appear_speed(self) -> i32
GetLineAppearSpeed() overload
Sourcefn draw_line_tick(self) -> (bool, Vector3)
fn draw_line_tick(self) -> (bool, Vector3)
DrawLineTick(*mutcrate::unity_engine::vector3::Vector3) overload
Sourcefn set_visible(self, value: impl Into<bool>)
fn set_visible(self, value: impl Into<bool>)
SetVisible(bool) overload
Sourcefn is_visible(self) -> bool
fn is_visible(self) -> bool
IsVisible() overload
Sourcefn is_active_endpoints(self) -> bool
fn is_active_endpoints(self) -> bool
IsActiveEndpoints() overload
Sourcefn build_poinsts(self)
fn build_poinsts(self)
BuildPoinsts() overload
Sourcefn build_line(self)
fn build_line(self)
BuildLine() overload
Sourcefn set_line_renderer_length(self, length: impl Into<i32>)
fn set_line_renderer_length(self, length: impl Into<i32>)
SetLineRendererLength(i32) overload
Sourcefn start_appear(self)
fn start_appear(self)
StartAppear() overload
Sourcefn clear_draw_line(self)
fn clear_draw_line(self)
ClearDrawLine() overload
Sourcefn get_gmap_spots(self) -> Array<GmapSpot>
fn get_gmap_spots(self) -> Array<GmapSpot>
GetGmapSpots() 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: IGmapLineRenderer> IGmapLineRendererMethods for __T
Available on crate feature
app-gmaplinerenderer only.