Skip to main content

IMapInfoEventMethods

Trait IMapInfoEventMethods 

Source
pub trait IMapInfoEventMethods: IMapInfoEvent {
    // Provided methods
    fn start(self) { ... }
    fn draw(self, x: impl Into<i32>, z: impl Into<i32>, color: impl Into<Color>) { ... }
    fn draw_2(
        self,
        x: impl Into<i32>,
        z: impl Into<i32>,
        color: impl Into<Color>,
        value: impl Into<i32>,
    ) { ... }
    fn draw_3(
        self,
        x: impl Into<i32>,
        z: impl Into<i32>,
        color: impl Into<Color>,
        name: impl Into<Il2CppString>,
    ) { ... }
    fn draw_4(self, inspector: impl Into<MapInspector>, color: impl Into<Color>) { ... }
    fn draw_event_vertex(self, inspector: impl Into<MapInspector>) { ... }
    fn update(self) { ... }
    fn update_event_vertex(self) { ... }
    fn update_scroll_animation(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn start(self)

Start() overload

Source

fn draw(self, x: impl Into<i32>, z: impl Into<i32>, color: impl Into<Color>)

Draw(i32, i32, crate::unity_engine::color::Color) overload

Source

fn draw_2( self, x: impl Into<i32>, z: impl Into<i32>, color: impl Into<Color>, value: impl Into<i32>, )

Draw(i32, i32, crate::unity_engine::color::Color, i32) overload

Source

fn draw_3( self, x: impl Into<i32>, z: impl Into<i32>, color: impl Into<Color>, name: impl Into<Il2CppString>, )

Draw(i32, i32, crate::unity_engine::color::Color, ::unity::Il2CppString) overload

Source

fn draw_4(self, inspector: impl Into<MapInspector>, color: impl Into<Color>)

Draw(crate::app::mapinspector::MapInspector, crate::unity_engine::color::Color) overload

Source

fn draw_event_vertex(self, inspector: impl Into<MapInspector>)

DrawEventVertex(crate::app::mapinspector::MapInspector) overload

Source

fn update(self)

Update() overload

Source

fn update_event_vertex(self)

UpdateEventVertex() overload

Source

fn update_scroll_animation(self)

UpdateScrollAnimation() 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: IMapInfoEvent> IMapInfoEventMethods for __T

Available on crate feature root-mapinfoevent only.