pub trait ISoundSystem_LipSyncDataFileMethods: ISoundSystem_LipSyncDataFile {
// Provided methods
fn ctor(self) { ... }
fn get_lip_sync_data_count(self) -> i32 { ... }
fn get_lip_sync_data(self, index: impl Into<i32>) -> SoundSystem_LipSyncData { ... }
fn load_async(self, file_name: impl Into<Il2CppString>) { ... }
fn expand_file_data(self) -> bool { ... }
fn unload(self) { ... }
}Provided Methods§
Sourcefn get_lip_sync_data_count(self) -> i32
fn get_lip_sync_data_count(self) -> i32
GetLipSyncDataCount() overload
Sourcefn get_lip_sync_data(self, index: impl Into<i32>) -> SoundSystem_LipSyncData
fn get_lip_sync_data(self, index: impl Into<i32>) -> SoundSystem_LipSyncData
GetLipSyncData(i32) overload
Sourcefn load_async(self, file_name: impl Into<Il2CppString>)
fn load_async(self, file_name: impl Into<Il2CppString>)
LoadAsync(::unity::Il2CppString) overload
Sourcefn expand_file_data(self) -> bool
fn expand_file_data(self) -> bool
ExpandFileData() 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: ISoundSystem_LipSyncDataFile> ISoundSystem_LipSyncDataFileMethods for __T
Available on crate feature
app-soundsystem only.