Class: FMOD::Sound::Format
- Inherits:
-
Struct
- Object
- Struct
- FMOD::Sound::Format
- Defined in:
- lib/fmod/sound.rb
Overview
Contains format information about the sound.
Instance Attribute Summary collapse
-
#bits ⇒ Integer
The number of bits per sample for the sound.
-
#channels ⇒ Integer
The number of channels for the sound.
-
#format ⇒ Integer
The format of the sound.
-
#type ⇒ Integer
The type of sound.
Instance Attribute Details
#bits ⇒ Integer
The number of bits per sample for the sound.
16 17 18 |
# File 'lib/fmod/sound.rb', line 16 def bits @bits end |
#channels ⇒ Integer
The number of channels for the sound.
16 17 18 |
# File 'lib/fmod/sound.rb', line 16 def channels @channels end |
#format ⇒ Integer
The format of the sound.
16 17 18 |
# File 'lib/fmod/sound.rb', line 16 def format @format end |
#type ⇒ Integer
The type of sound.
16 17 18 |
# File 'lib/fmod/sound.rb', line 16 def type @type end |