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§
Sourcefn draw(self, x: impl Into<i32>, z: impl Into<i32>, color: impl Into<Color>)
fn draw(self, x: impl Into<i32>, z: impl Into<i32>, color: impl Into<Color>)
Draw(i32, i32, crate::unity_engine::color::Color) overload
Sourcefn draw_2(
self,
x: impl Into<i32>,
z: impl Into<i32>,
color: impl Into<Color>,
value: impl Into<i32>,
)
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
Sourcefn draw_3(
self,
x: impl Into<i32>,
z: impl Into<i32>,
color: impl Into<Color>,
name: impl Into<Il2CppString>,
)
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
Sourcefn draw_4(self, inspector: impl Into<MapInspector>, color: impl Into<Color>)
fn draw_4(self, inspector: impl Into<MapInspector>, color: impl Into<Color>)
Draw(crate::app::mapinspector::MapInspector, crate::unity_engine::color::Color) overload
Sourcefn draw_event_vertex(self, inspector: impl Into<MapInspector>)
fn draw_event_vertex(self, inspector: impl Into<MapInspector>)
DrawEventVertex(crate::app::mapinspector::MapInspector) overload
Sourcefn update_event_vertex(self)
fn update_event_vertex(self)
UpdateEventVertex() overload
Sourcefn update_scroll_animation(self)
fn update_scroll_animation(self)
UpdateScrollAnimation() 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: IMapInfoEvent> IMapInfoEventMethods for __T
Available on crate feature
root-mapinfoevent only.