pub trait ISpatialAudioObject_Impl: Sized + ISpatialAudioObjectBase_Impl {
    // Required methods
    fn SetPosition(&self, x: f32, y: f32, z: f32) -> Result<()>;
    fn SetVolume(&self, volume: f32) -> Result<()>;
}

Required Methods§

fn SetPosition(&self, x: f32, y: f32, z: f32) -> Result<()>

fn SetVolume(&self, volume: f32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§