Skip to main content

IGmapLineRenderer_LinePointMethods

Trait IGmapLineRenderer_LinePointMethods 

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

Source

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

Source

fn get_index(self) -> i32

get_index() overload

Source

fn get_position(self) -> Vector3

get_position() overload

Source

fn get_color(self) -> Color

get_color() overload

Source

fn set_color(self, value: impl Into<Color>)

set_color(crate::unity_engine::color::Color) overload

Source

fn get_alpha(self) -> f32

get_alpha() overload

Source

fn set_alpha(self, value: impl Into<f32>)

set_alpha(f32) overload

Source

fn get_is_apperd(self) -> bool

get_isApperd() overload

Source

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

set_isApperd(bool) overload

Source

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

Source

fn update_color(self) -> List_1<Color>

UpdateColor(*mutcrate::system::collections::generic::list_1::List_1<crate::unity_engine::color::Color>) overload

Source

fn tick(self)

Tick() 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_LinePoint> IGmapLineRenderer_LinePointMethods for __T

Available on crate feature app-gmaplinerenderer only.