pub trait IFieldBgmManager_BgmHandleMethods: IFieldBgmManager_BgmHandle {
// Provided methods
fn ctor(self, sound_handle: impl Into<SoundSystem_SoundHandle>) { ... }
fn is_enable(self) -> bool { ... }
fn is_first_played(self) -> bool { ... }
fn is_playing(self) -> bool { ... }
fn is_paused(self) -> bool { ... }
fn get_event_name(self) -> Il2CppString { ... }
fn stop(self, fade_msec: impl Into<i32>) { ... }
fn pause(self, fade_msec: impl Into<i32>) { ... }
fn resume(self, fade_msec: impl Into<i32>) { ... }
fn set_first_played(self) { ... }
}Provided Methods§
Sourcefn ctor(self, sound_handle: impl Into<SoundSystem_SoundHandle>)
fn ctor(self, sound_handle: impl Into<SoundSystem_SoundHandle>)
.ctor(crate::app::soundsystem::SoundSystem_SoundHandle) overload
Sourcefn is_first_played(self) -> bool
fn is_first_played(self) -> bool
IsFirstPlayed() overload
Sourcefn is_playing(self) -> bool
fn is_playing(self) -> bool
IsPlaying() overload
Sourcefn get_event_name(self) -> Il2CppString
fn get_event_name(self) -> Il2CppString
GetEventName() overload
Sourcefn set_first_played(self)
fn set_first_played(self)
SetFirstPlayed() 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: IFieldBgmManager_BgmHandle> IFieldBgmManager_BgmHandleMethods for __T
Available on crate feature
app-fieldbgmmanager only.