pub trait IHubAccessoryRoomMethods: IHubAccessoryRoom {
Show 18 methods
// Provided methods
fn get_scene_name(self) -> Il2CppString { ... }
fn get_return_scene_name(self) -> Il2CppString { ... }
fn ctor(self, shop: impl Into<HubAccessoryRoom_Shop>) { ... }
fn additive_scene(self) { ... }
fn open_title(self) { ... }
fn init(self) { ... }
fn un_additive_scene(self) { ... }
fn exit(self) { ... }
fn exit_other(self) { ... }
fn exit_after(self) { ... }
fn is_character_loading(self) -> bool { ... }
fn main(self) { ... }
fn get_camera_pos(self) -> HubAccessoryRoomCamera { ... }
fn set_camera_pos(self, value: impl Into<HubAccessoryRoomCamera>) { ... }
fn load_character(
self,
appearance: impl Into<CharacterAppearance>,
pid: impl Into<Il2CppString>,
) { ... }
fn destroy_current_char(self) { ... }
fn set_view_mode_core(self, mode: impl Into<HubAccessoryRoom_ViewMode>) { ... }
fn on_shutdown(self) { ... }
}Provided Methods§
Sourcefn get_scene_name(self) -> Il2CppString
fn get_scene_name(self) -> Il2CppString
get_SceneName() overload
Sourcefn get_return_scene_name(self) -> Il2CppString
fn get_return_scene_name(self) -> Il2CppString
get_ReturnSceneName() overload
Sourcefn ctor(self, shop: impl Into<HubAccessoryRoom_Shop>)
fn ctor(self, shop: impl Into<HubAccessoryRoom_Shop>)
.ctor(crate::app::hubaccessoryroom::HubAccessoryRoom_Shop) overload
Sourcefn additive_scene(self)
fn additive_scene(self)
AdditiveScene() overload
Sourcefn open_title(self)
fn open_title(self)
OpenTitle() overload
Sourcefn un_additive_scene(self)
fn un_additive_scene(self)
UnAdditiveScene() overload
Sourcefn exit_other(self)
fn exit_other(self)
ExitOther() overload
Sourcefn exit_after(self)
fn exit_after(self)
ExitAfter() overload
Sourcefn is_character_loading(self) -> bool
fn is_character_loading(self) -> bool
IsCharacterLoading() overload
Sourcefn get_camera_pos(self) -> HubAccessoryRoomCamera
fn get_camera_pos(self) -> HubAccessoryRoomCamera
get_CameraPos() overload
Sourcefn set_camera_pos(self, value: impl Into<HubAccessoryRoomCamera>)
fn set_camera_pos(self, value: impl Into<HubAccessoryRoomCamera>)
set_CameraPos(crate::app::hubaccessoryroomcamera::HubAccessoryRoomCamera) overload
Sourcefn load_character(
self,
appearance: impl Into<CharacterAppearance>,
pid: impl Into<Il2CppString>,
)
fn load_character( self, appearance: impl Into<CharacterAppearance>, pid: impl Into<Il2CppString>, )
LoadCharacter(crate::combat::characterappearance::CharacterAppearance, ::unity::Il2CppString) overload
Sourcefn destroy_current_char(self)
fn destroy_current_char(self)
DestroyCurrentChar() overload
Sourcefn set_view_mode_core(self, mode: impl Into<HubAccessoryRoom_ViewMode>)
fn set_view_mode_core(self, mode: impl Into<HubAccessoryRoom_ViewMode>)
SetViewModeCore(crate::app::hubaccessoryroom::HubAccessoryRoom_ViewMode) overload
Sourcefn on_shutdown(self)
fn on_shutdown(self)
OnShutdown() 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: IHubAccessoryRoom> IHubAccessoryRoomMethods for __T
Available on crate feature
app-hubaccessoryroom only.