pub trait IMapCursorLocatorRootMethods: IMapCursorLocatorRoot {
// Provided methods
fn awake(self) { ... }
fn on_destroy(self) { ... }
fn get_game_object(self) { ... }
fn get_map_cursor_color(self) { ... }
fn get_orig_pos(self) { ... }
fn init_map_cursor(self) { ... }
fn scale_cursor(self, frame: impl Into<i32>) { ... }
fn is_scale_cursor(self) -> bool { ... }
fn set_color(self, color: impl Into<Color>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Sourcefn get_game_object(self)
fn get_game_object(self)
GetGameObject() overload
Sourcefn get_map_cursor_color(self)
fn get_map_cursor_color(self)
GetMapCursorColor() overload
Sourcefn get_orig_pos(self)
fn get_orig_pos(self)
GetOrigPos() overload
Sourcefn init_map_cursor(self)
fn init_map_cursor(self)
InitMapCursor() overload
Sourcefn scale_cursor(self, frame: impl Into<i32>)
fn scale_cursor(self, frame: impl Into<i32>)
ScaleCursor(i32) overload
Sourcefn is_scale_cursor(self) -> bool
fn is_scale_cursor(self) -> bool
IsScaleCursor() 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: IMapCursorLocatorRoot> IMapCursorLocatorRootMethods for __T
Available on crate feature
root-mapcursorlocatorroot only.