Class: FMOD::System::SoftwareFormat
- Inherits:
-
Struct
- Object
- Struct
- FMOD::System::SoftwareFormat
- Defined in:
- lib/fmod/system.rb
Overview
Describes the output format for the software mixer.
Instance Attribute Summary collapse
-
#raw_channels ⇒ Integer
Number of output channels / speakers to initialize the sound card to in raw speaker mode.
-
#sample_rate ⇒ Integer
The rate in Hz, that the software mixer will run at.
-
#speaker_mode ⇒ Integer
Speaker setup for the software mixer.
Instance Attribute Details
#raw_channels ⇒ Integer
Number of output channels / speakers to initialize the sound card to in raw speaker mode.
69 70 71 |
# File 'lib/fmod/system.rb', line 69 def raw_channels @raw_channels end |
#sample_rate ⇒ Integer
The rate in Hz, that the software mixer will run at. Specify values between 8000 and 192000.
69 70 71 |
# File 'lib/fmod/system.rb', line 69 def sample_rate @sample_rate end |
#speaker_mode ⇒ Integer
Speaker setup for the software mixer.
69 70 71 |
# File 'lib/fmod/system.rb', line 69 def speaker_mode @speaker_mode end |