pub trait IMyRoomWakeupSelectRoot_CursorTopMethods: IMyRoomWakeupSelectRoot_CursorTop {
Show 13 methods
// Provided methods
fn is_open(self, index: impl Into<i32>) -> bool { ... }
fn ctor(self, transform: impl Into<RectTransform>) { ... }
fn reset(
self,
transform: impl Into<RectTransform>,
level: impl Into<RelianceData_Level>,
pattern: impl Into<GameSound_WakeupVoicePattern>,
) { ... }
fn set_select_index(self, select_index: impl Into<i32>) { ... }
fn get_select_index(self) -> i32 { ... }
fn key_up(self, is_trigger: impl Into<bool>) { ... }
fn key_down(self, is_trigger: impl Into<bool>) { ... }
fn key_left(self, is_trigger: impl Into<bool>) { ... }
fn key_right(self, is_trigger: impl Into<bool>) { ... }
fn update(self) { ... }
fn get_corrected_y_coord(self) -> f32 { ... }
fn get_position_x(self, select_index: impl Into<i32>) -> f32 { ... }
fn get_position_y(self, select_index: impl Into<i32>) -> f32 { ... }
}Provided Methods§
Sourcefn ctor(self, transform: impl Into<RectTransform>)
fn ctor(self, transform: impl Into<RectTransform>)
.ctor(crate::unity_engine::recttransform::RectTransform) overload
Sourcefn reset(
self,
transform: impl Into<RectTransform>,
level: impl Into<RelianceData_Level>,
pattern: impl Into<GameSound_WakeupVoicePattern>,
)
fn reset( self, transform: impl Into<RectTransform>, level: impl Into<RelianceData_Level>, pattern: impl Into<GameSound_WakeupVoicePattern>, )
Reset(crate::unity_engine::recttransform::RectTransform, crate::app::reliancedata::RelianceData_Level, crate::app::gamesound::GameSound_WakeupVoicePattern) overload
Sourcefn set_select_index(self, select_index: impl Into<i32>)
fn set_select_index(self, select_index: impl Into<i32>)
SetSelectIndex(i32) overload
Sourcefn get_select_index(self) -> i32
fn get_select_index(self) -> i32
GetSelectIndex() overload
Sourcefn get_corrected_y_coord(self) -> f32
fn get_corrected_y_coord(self) -> f32
GetCorrectedYCoord() overload
Sourcefn get_position_x(self, select_index: impl Into<i32>) -> f32
fn get_position_x(self, select_index: impl Into<i32>) -> f32
GetPositionX(i32) overload
Sourcefn get_position_y(self, select_index: impl Into<i32>) -> f32
fn get_position_y(self, select_index: impl Into<i32>) -> f32
GetPositionY(i32) 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: IMyRoomWakeupSelectRoot_CursorTop> IMyRoomWakeupSelectRoot_CursorTopMethods for __T
Available on crate feature
app-myroomwakeupselectroot only.