Class: FMOD::Core::LoopPoints

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

Overview

Describes the loop points for the channel.

Instance Attribute Summary collapse

Instance Attribute Details

#endInteger

The loop end point, this point in time is played so it is inclusive.

Returns:

  • (Integer)

    the current value of end



20
21
22
# File 'lib/fmod/core/structures.rb', line 20

def end
  @end
end

#end_unitInteger

Time format used for the loop end point. See TimeUnit.

Returns:

  • (Integer)

    the current value of end_unit



20
21
22
# File 'lib/fmod/core/structures.rb', line 20

def end_unit
  @end_unit
end

#startInteger

The loop start point, this point in time is played so it is inclusive.

Returns:

  • (Integer)

    the current value of start



20
21
22
# File 'lib/fmod/core/structures.rb', line 20

def start
  @start
end

#start_unitInteger

Time format used for the loop start point. See TimeUnit.

Returns:

  • (Integer)

    the current value of start_unit



20
21
22
# File 'lib/fmod/core/structures.rb', line 20

def start_unit
  @start_unit
end