Skip to main content

IHubAccessCursorMethods

Trait IHubAccessCursorMethods 

Source
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§

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 start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn is_fade(self) -> bool

IsFade() overload

Source

fn is_in_range(self) -> bool

IsInRange() 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 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: IHubAccessCursor> IHubAccessCursorMethods for __T

Available on crate feature app-hubaccesscursor only.