Class: FMOD::System::FileUsage
- Inherits:
-
Struct
- Object
- Struct
- FMOD::System::FileUsage
- Defined in:
- lib/fmod/system.rb
Overview
Contains information about file reads by FMOD.
Instance Attribute Summary collapse
-
#other ⇒ Integer
The total bytes read for non-audio data such as FMOD Studio banks.
-
#sample ⇒ Integer
The total bytes read from file for loading sample data.
-
#stream ⇒ Integer
The total bytes read from file for streaming sounds.
Instance Attribute Details
#other ⇒ Integer
The total bytes read for non-audio data such as FMOD Studio banks.
45 46 47 |
# File 'lib/fmod/system.rb', line 45 def other @other end |
#sample ⇒ Integer
The total bytes read from file for loading sample data.
45 46 47 |
# File 'lib/fmod/system.rb', line 45 def sample @sample end |
#stream ⇒ Integer
The total bytes read from file for streaming sounds.
45 46 47 |
# File 'lib/fmod/system.rb', line 45 def stream @stream end |