Skip to main content

IAkChannelEmitterArrayMethods

Trait IAkChannelEmitterArrayMethods 

Source
pub trait IAkChannelEmitterArrayMethods: IAkChannelEmitterArray {
    // Provided methods
    fn ctor(self, in_count: impl Into<u32>) { ... }
    fn get_count(self) -> u32 { ... }
    fn set_count(self, value: impl Into<u32>) { ... }
    fn dispose(self) { ... }
    fn finalize(self) { ... }
    fn reset(self) { ... }
    fn add(
        self,
        in_pos: impl Into<Vector3>,
        in_forward: impl Into<Vector3>,
        in_top: impl Into<Vector3>,
        in_channel_mask: impl Into<u32>,
    ) { ... }
}

Provided Methods§

Source

fn ctor(self, in_count: impl Into<u32>)

.ctor(u32) overload

Source

fn get_count(self) -> u32

get_Count() overload

Source

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

set_Count(u32) overload

Source

fn dispose(self)

Dispose() overload

Source

fn finalize(self)

Finalize() overload

Source

fn reset(self)

Reset() overload

Source

fn add( self, in_pos: impl Into<Vector3>, in_forward: impl Into<Vector3>, in_top: impl Into<Vector3>, in_channel_mask: impl Into<u32>, )

Add(crate::unity_engine::vector3::Vector3, crate::unity_engine::vector3::Vector3, crate::unity_engine::vector3::Vector3, u32) 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: IAkChannelEmitterArray> IAkChannelEmitterArrayMethods for __T

Available on crate feature root-akchannelemitterarray only.