Skip to main content

IAkPlatformInitSettingsMethods

Trait IAkPlatformInitSettingsMethods 

Source
pub trait IAkPlatformInitSettingsMethods: IAkPlatformInitSettings {
Show 22 methods // Provided methods fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>) { ... } fn set_c_ptr(self, c_ptr: impl Into<IntPtr>) { ... } fn finalize(self) { ... } fn dispose(self) { ... } fn set_thread_l_engine(self, value: impl Into<AkThreadProperties>) { ... } fn get_thread_l_engine(self) -> AkThreadProperties { ... } fn set_thread_output_mgr(self, value: impl Into<AkThreadProperties>) { ... } fn get_thread_output_mgr(self) -> AkThreadProperties { ... } fn set_thread_bank_manager(self, value: impl Into<AkThreadProperties>) { ... } fn get_thread_bank_manager(self) -> AkThreadProperties { ... } fn set_thread_monitor(self, value: impl Into<AkThreadProperties>) { ... } fn get_thread_monitor(self) -> AkThreadProperties { ... } fn set_thread_opus_decoder(self, value: impl Into<AkThreadProperties>) { ... } fn get_thread_opus_decoder(self) -> AkThreadProperties { ... } fn set_u_sample_rate(self, value: impl Into<u32>) { ... } fn get_u_sample_rate(self) -> u32 { ... } fn set_u_num_refills_in_voice(self, value: impl Into<u16>) { ... } fn get_u_num_refills_in_voice(self) -> u16 { ... } fn set_b_auto_panning_rule(self, value: impl Into<bool>) { ... } fn get_b_auto_panning_rule(self) -> bool { ... } fn set_b_acquire_audio_device_notification(self, value: impl Into<bool>) { ... } fn get_b_acquire_audio_device_notification(self) -> bool { ... }
}

Provided Methods§

Source

fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)

.ctor(::unity::IntPtr, bool) overload

Source

fn set_c_ptr(self, c_ptr: impl Into<IntPtr>)

setCPtr(::unity::IntPtr) overload

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() overload

Source

fn set_thread_l_engine(self, value: impl Into<AkThreadProperties>)

set_threadLEngine(crate::root::akthreadproperties::AkThreadProperties) overload

Source

fn get_thread_l_engine(self) -> AkThreadProperties

get_threadLEngine() overload

Source

fn set_thread_output_mgr(self, value: impl Into<AkThreadProperties>)

set_threadOutputMgr(crate::root::akthreadproperties::AkThreadProperties) overload

Source

fn get_thread_output_mgr(self) -> AkThreadProperties

get_threadOutputMgr() overload

Source

fn set_thread_bank_manager(self, value: impl Into<AkThreadProperties>)

set_threadBankManager(crate::root::akthreadproperties::AkThreadProperties) overload

Source

fn get_thread_bank_manager(self) -> AkThreadProperties

get_threadBankManager() overload

Source

fn set_thread_monitor(self, value: impl Into<AkThreadProperties>)

set_threadMonitor(crate::root::akthreadproperties::AkThreadProperties) overload

Source

fn get_thread_monitor(self) -> AkThreadProperties

get_threadMonitor() overload

Source

fn set_thread_opus_decoder(self, value: impl Into<AkThreadProperties>)

set_threadOpusDecoder(crate::root::akthreadproperties::AkThreadProperties) overload

Source

fn get_thread_opus_decoder(self) -> AkThreadProperties

get_threadOpusDecoder() overload

Source

fn set_u_sample_rate(self, value: impl Into<u32>)

set_uSampleRate(u32) overload

Source

fn get_u_sample_rate(self) -> u32

get_uSampleRate() overload

Source

fn set_u_num_refills_in_voice(self, value: impl Into<u16>)

set_uNumRefillsInVoice(u16) overload

Source

fn get_u_num_refills_in_voice(self) -> u16

get_uNumRefillsInVoice() overload

Source

fn set_b_auto_panning_rule(self, value: impl Into<bool>)

set_bAutoPanningRule(bool) overload

Source

fn get_b_auto_panning_rule(self) -> bool

get_bAutoPanningRule() overload

Source

fn set_b_acquire_audio_device_notification(self, value: impl Into<bool>)

set_bAcquireAudioDeviceNotification(bool) overload

Source

fn get_b_acquire_audio_device_notification(self) -> bool

get_bAcquireAudioDeviceNotification() 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: IAkPlatformInitSettings> IAkPlatformInitSettingsMethods for __T

Available on crate feature root-akplatforminitsettings only.