pub trait IGmapLineRenderer_LinePointMethods: IGmapLineRenderer_LinePoint {
// Provided methods
fn ctor(
self,
index: impl Into<i32>,
pos: impl Into<Vector3>,
color: impl Into<Color>,
) { ... }
fn get_index(self) -> i32 { ... }
fn get_position(self) -> Vector3 { ... }
fn get_color(self) -> Color { ... }
fn set_color(self, value: impl Into<Color>) { ... }
fn get_alpha(self) -> f32 { ... }
fn set_alpha(self, value: impl Into<f32>) { ... }
fn get_is_apperd(self) -> bool { ... }
fn set_is_apperd(self, value: impl Into<bool>) { ... }
fn add(
self,
size: impl Into<f32>,
rotate: impl Into<f32>,
) -> (List_1<Vector3>, List_1<Color>, List_1<Vector2>, List_1<i32>) { ... }
fn update_color(self) -> List_1<Color> { ... }
fn tick(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
index: impl Into<i32>,
pos: impl Into<Vector3>,
color: impl Into<Color>,
)
fn ctor( self, index: impl Into<i32>, pos: impl Into<Vector3>, color: impl Into<Color>, )
.ctor(i32, crate::unity_engine::vector3::Vector3, crate::unity_engine::color::Color) overload
Sourcefn get_position(self) -> Vector3
fn get_position(self) -> Vector3
get_position() overload
Sourcefn set_color(self, value: impl Into<Color>)
fn set_color(self, value: impl Into<Color>)
set_color(crate::unity_engine::color::Color) overload
Sourcefn get_is_apperd(self) -> bool
fn get_is_apperd(self) -> bool
get_isApperd() overload
Sourcefn set_is_apperd(self, value: impl Into<bool>)
fn set_is_apperd(self, value: impl Into<bool>)
set_isApperd(bool) overload
Sourcefn add(
self,
size: impl Into<f32>,
rotate: impl Into<f32>,
) -> (List_1<Vector3>, List_1<Color>, List_1<Vector2>, List_1<i32>)
fn add( self, size: impl Into<f32>, rotate: impl Into<f32>, ) -> (List_1<Vector3>, List_1<Color>, List_1<Vector2>, List_1<i32>)
Add(*mutcrate::system::collections::generic::list_1::List_1<crate::unity_engine::vector3::Vector3>, *mutcrate::system::collections::generic::list_1::List_1<crate::unity_engine::color::Color>, *mutcrate::system::collections::generic::list_1::List_1<crate::unity_engine::vector2::Vector2>, *mutcrate::system::collections::generic::list_1::List_1<i32>, f32, f32) overload
Sourcefn update_color(self) -> List_1<Color>
fn update_color(self) -> List_1<Color>
UpdateColor(*mutcrate::system::collections::generic::list_1::List_1<crate::unity_engine::color::Color>) 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_LinePoint> IGmapLineRenderer_LinePointMethods for __T
app-gmaplinerenderer only.