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§
Sourcefn get_balloon_type(self) -> HubBalloon_Type
fn get_balloon_type(self) -> HubBalloon_Type
get_BalloonType() overload
Sourcefn set_balloon_type(self, value: impl Into<HubBalloon_Type>)
fn set_balloon_type(self, value: impl Into<HubBalloon_Type>)
set_BalloonType(crate::app::hubballoon::HubBalloon_Type) overload
Sourcefn get_use_up_icon(self) -> bool
fn get_use_up_icon(self) -> bool
get_UseUpIcon() overload
Sourcefn set_use_up_icon(self, value: impl Into<bool>)
fn set_use_up_icon(self, value: impl Into<bool>)
set_UseUpIcon(bool) overload
Sourcefn get_target_access(self) -> HubAccess
fn get_target_access(self) -> HubAccess
get_TargetAccess() overload
Sourcefn set_target_access(self, value: impl Into<HubAccess>)
fn set_target_access(self, value: impl Into<HubAccess>)
set_TargetAccess(crate::app::hubaccess::HubAccess) overload
Sourcefn get_chara_fader(self) -> Iron19CharacterFader
fn get_chara_fader(self) -> Iron19CharacterFader
get_CharaFader() overload
Sourcefn set_chara_fader(self, value: impl Into<Iron19CharacterFader>)
fn set_chara_fader(self, value: impl Into<Iron19CharacterFader>)
set_CharaFader(crate::root::iron19characterfader::Iron19CharacterFader) overload
Sourcefn get_fade_distance(self) -> f32
fn get_fade_distance(self) -> f32
get_FadeDistance() overload
Sourcefn set_fade_distance(self, value: impl Into<f32>)
fn set_fade_distance(self, value: impl Into<f32>)
set_FadeDistance(f32) overload
Sourcefn get_player_controller(self) -> HubPlayerController
fn get_player_controller(self) -> HubPlayerController
get_PlayerController() overload
Sourcefn set_player_controller(self, value: impl Into<HubPlayerController>)
fn set_player_controller(self, value: impl Into<HubPlayerController>)
set_PlayerController(crate::app::hubplayercontroller::HubPlayerController) overload
Sourcefn set_active_talk_default(self, value: impl Into<bool>)
fn set_active_talk_default(self, value: impl Into<bool>)
SetActiveTalkDefault(bool) overload
Sourcefn set_active_talk_chapter(self, value: impl Into<bool>)
fn set_active_talk_chapter(self, value: impl Into<bool>)
SetActiveTalkChapter(bool) overload
Sourcefn set_active_talk_reliance(self, value: impl Into<bool>)
fn set_active_talk_reliance(self, value: impl Into<bool>)
SetActiveTalkReliance(bool) overload
Sourcefn is_out_range(self) -> bool
fn is_out_range(self) -> bool
IsOutRange() overload
Sourcefn is_fade_alpha(self) -> bool
fn is_fade_alpha(self) -> bool
IsFadeAlpha() overload
Sourcefn is_active_access(self) -> bool
fn is_active_access(self) -> bool
IsActiveAccess() overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Sourcefn update_alpha(self, gain: impl Into<f32>)
fn update_alpha(self, gain: impl Into<f32>)
UpdateAlpha(f32) overload
Sourcefn set_material_dark(self)
fn set_material_dark(self)
SetMaterialDark() overload
Sourcefn set_material_light(self)
fn set_material_light(self)
SetMaterialLight() overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() 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: IHubBalloon> IHubBalloonMethods for __T
app-hubballoon only.