Class: FMOD::System::FileUsage

Inherits:
Struct
  • Object
show all
Defined in:
lib/fmod/system.rb

Overview

Contains information about file reads by FMOD.

Instance Attribute Summary collapse

Instance Attribute Details

#otherInteger

The total bytes read for non-audio data such as FMOD Studio banks.

Returns:

  • (Integer)

    the current value of other



45
46
47
# File 'lib/fmod/system.rb', line 45

def other
  @other
end

#sampleInteger

The total bytes read from file for loading sample data.

Returns:

  • (Integer)

    the current value of sample



45
46
47
# File 'lib/fmod/system.rb', line 45

def sample
  @sample
end

#streamInteger

The total bytes read from file for streaming sounds.

Returns:

  • (Integer)

    the current value of stream



45
46
47
# File 'lib/fmod/system.rb', line 45

def stream
  @stream
end