Skip to main content

IAkSurfaceReflectorMethods

Trait IAkSurfaceReflectorMethods 

Source
pub trait IAkSurfaceReflectorMethods: IAkSurfaceReflector {
    // Provided methods
    fn get_id(self) -> u64 { ... }
    fn set_associated_room(self, room: impl Into<AkRoom>) { ... }
    fn set_geometry(self) { ... }
    fn update_geometry(self) { ... }
    fn remove_geometry(self) { ... }
    fn awake(self) { ... }
    fn on_enable(self) { ... }
    fn on_disable(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_id(self) -> u64

GetID() overload

Source

fn set_associated_room(self, room: impl Into<AkRoom>)

SetAssociatedRoom(crate::root::akroom::AkRoom) overload

Source

fn set_geometry(self)

SetGeometry() overload

Source

fn update_geometry(self)

UpdateGeometry() overload

Source

fn remove_geometry(self)

RemoveGeometry() overload

Source

fn awake(self)

Awake() overload

Source

fn on_enable(self)

OnEnable() overload

Source

fn on_disable(self)

OnDisable() overload

Source

fn ctor(self)

.ctor() 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: IAkSurfaceReflector> IAkSurfaceReflectorMethods for __T

Available on crate feature root-aksurfacereflector only.