pub trait IHubAccessCursorMethods: IHubAccessCursor {
Show 19 methods
// Provided methods
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 start(self) { ... }
fn update(self) { ... }
fn is_fade(self) -> bool { ... }
fn is_in_range(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 on_destroy(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
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 is_in_range(self) -> bool
fn is_in_range(self) -> bool
IsInRange() 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 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: IHubAccessCursor> IHubAccessCursorMethods for __T
Available on crate feature
app-hubaccesscursor only.