Skip to main content

IHubBalloonMethods

Trait IHubBalloonMethods 

Source
pub trait IHubBalloonMethods: IHubBalloon {
Show 27 methods // Provided methods fn get_balloon_type(self) -> HubBalloon_Type { ... } fn set_balloon_type(self, value: impl Into<HubBalloon_Type>) { ... } fn get_use_up_icon(self) -> bool { ... } fn set_use_up_icon(self, value: impl Into<bool>) { ... } fn get_target_access(self) -> HubAccess { ... } fn set_target_access(self, value: impl Into<HubAccess>) { ... } fn get_chara_fader(self) -> Iron19CharacterFader { ... } fn set_chara_fader(self, value: impl Into<Iron19CharacterFader>) { ... } fn get_fade_distance(self) -> f32 { ... } fn set_fade_distance(self, value: impl Into<f32>) { ... } fn get_player_controller(self) -> HubPlayerController { ... } fn set_player_controller(self, value: impl Into<HubPlayerController>) { ... } fn set_active_talk_default(self, value: impl Into<bool>) { ... } fn set_active_talk_chapter(self, value: impl Into<bool>) { ... } fn set_active_talk_reliance(self, value: impl Into<bool>) { ... } fn start(self) { ... } fn update(self) { ... } fn is_active(self) -> bool { ... } fn is_out_range(self) -> bool { ... } fn is_fade_alpha(self) -> bool { ... } fn is_active_access(self) -> bool { ... } fn late_update(self) { ... } fn update_alpha(self, gain: impl Into<f32>) { ... } fn set_material_dark(self) { ... } fn set_material_light(self) { ... } fn on_destroy(self) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_balloon_type(self) -> HubBalloon_Type

get_BalloonType() overload

Source

fn set_balloon_type(self, value: impl Into<HubBalloon_Type>)

set_BalloonType(crate::app::hubballoon::HubBalloon_Type) overload

Source

fn get_use_up_icon(self) -> bool

get_UseUpIcon() overload

Source

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

set_UseUpIcon(bool) overload

Source

fn get_target_access(self) -> HubAccess

get_TargetAccess() overload

Source

fn set_target_access(self, value: impl Into<HubAccess>)

set_TargetAccess(crate::app::hubaccess::HubAccess) overload

Source

fn get_chara_fader(self) -> Iron19CharacterFader

get_CharaFader() overload

Source

fn set_chara_fader(self, value: impl Into<Iron19CharacterFader>)

set_CharaFader(crate::root::iron19characterfader::Iron19CharacterFader) overload

Source

fn get_fade_distance(self) -> f32

get_FadeDistance() overload

Source

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

set_FadeDistance(f32) overload

Source

fn get_player_controller(self) -> HubPlayerController

get_PlayerController() overload

Source

fn set_player_controller(self, value: impl Into<HubPlayerController>)

set_PlayerController(crate::app::hubplayercontroller::HubPlayerController) overload

Source

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

SetActiveTalkDefault(bool) overload

Source

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

SetActiveTalkChapter(bool) overload

Source

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

SetActiveTalkReliance(bool) overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn is_active(self) -> bool

IsActive() overload

Source

fn is_out_range(self) -> bool

IsOutRange() overload

Source

fn is_fade_alpha(self) -> bool

IsFadeAlpha() overload

Source

fn is_active_access(self) -> bool

IsActiveAccess() overload

Source

fn late_update(self)

LateUpdate() overload

Source

fn update_alpha(self, gain: impl Into<f32>)

UpdateAlpha(f32) overload

Source

fn set_material_dark(self)

SetMaterialDark() overload

Source

fn set_material_light(self)

SetMaterialLight() overload

Source

fn on_destroy(self)

OnDestroy() 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: IHubBalloon> IHubBalloonMethods for __T

Available on crate feature app-hubballoon only.