pub struct SoundEmitter {
Show 13 fields pub is_valid: bool, pub priority: u8, pub looping: bool, pub reverb: bool, pub is_3d: bool, pub atten_type: AttenuationType, pub atten_min_dist: f32, pub atten_max_dist: f32, pub atten_rolloff: f32, pub position: Vector3, pub volume: f32, pub pitch: f32, pub pan: f32, /* private fields */
}

Fields

is_valid: boolpriority: u8looping: boolreverb: boolis_3d: boolatten_type: AttenuationTypeatten_min_dist: f32atten_max_dist: f32atten_rolloff: f32position: Vector3volume: f32pitch: f32pan: f32

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.