pub trait IMapInfoIconLocatorRootMethods: IMapInfoIconLocatorRoot {
Show 13 methods
// Provided methods
fn awake(self) { ... }
fn set_icon(self, inspector: impl Into<MapInspector>) { ... }
fn is_set_position(self) -> bool { ... }
fn is_set_param(self) -> bool { ... }
fn set_visible(self) { ... }
fn is_visible(self) -> bool { ... }
fn set_position(self, inspector: impl Into<MapInspector>) { ... }
fn set_scale(self, inspector: impl Into<MapInspector>) { ... }
fn set_baloon_icon(self, inspector: impl Into<MapInspector>) { ... }
fn set_hp_gauge(self, inspector: impl Into<MapInspector>) { ... }
fn set_cannon_stock(self, inspector: impl Into<MapInspector>) { ... }
fn set_active(self, obj: impl Into<GameObject>, enable: impl Into<bool>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_icon(self, inspector: impl Into<MapInspector>)
fn set_icon(self, inspector: impl Into<MapInspector>)
SetIcon(crate::app::mapinspector::MapInspector) overload
Sourcefn is_set_position(self) -> bool
fn is_set_position(self) -> bool
IsSetPosition() overload
Sourcefn is_set_param(self) -> bool
fn is_set_param(self) -> bool
IsSetParam() overload
Sourcefn set_visible(self)
fn set_visible(self)
SetVisible() overload
Sourcefn is_visible(self) -> bool
fn is_visible(self) -> bool
IsVisible() overload
Sourcefn set_position(self, inspector: impl Into<MapInspector>)
fn set_position(self, inspector: impl Into<MapInspector>)
SetPosition(crate::app::mapinspector::MapInspector) overload
Sourcefn set_scale(self, inspector: impl Into<MapInspector>)
fn set_scale(self, inspector: impl Into<MapInspector>)
SetScale(crate::app::mapinspector::MapInspector) overload
Sourcefn set_baloon_icon(self, inspector: impl Into<MapInspector>)
fn set_baloon_icon(self, inspector: impl Into<MapInspector>)
SetBaloonIcon(crate::app::mapinspector::MapInspector) overload
Sourcefn set_hp_gauge(self, inspector: impl Into<MapInspector>)
fn set_hp_gauge(self, inspector: impl Into<MapInspector>)
SetHpGauge(crate::app::mapinspector::MapInspector) overload
Sourcefn set_cannon_stock(self, inspector: impl Into<MapInspector>)
fn set_cannon_stock(self, inspector: impl Into<MapInspector>)
SetCannonStock(crate::app::mapinspector::MapInspector) overload
Sourcefn set_active(self, obj: impl Into<GameObject>, enable: impl Into<bool>)
fn set_active(self, obj: impl Into<GameObject>, enable: impl Into<bool>)
SetActive(crate::unity_engine::gameobject::GameObject, bool) 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: IMapInfoIconLocatorRoot> IMapInfoIconLocatorRootMethods for __T
Available on crate feature
root-mapinfoiconlocatorroot only.