Class: RPG::AudioFile

Inherits:
Object
  • Object
show all
Defined in:
lib/rgss3/rpg.rb

Direct Known Subclasses

BGM, BGS, ME, SE

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = '', volume = 100, pitch = 100) ⇒ AudioFile

Returns a new instance of AudioFile.



5
6
7
8
9
# File 'lib/rgss3/rpg.rb', line 5

def initialize(name = '', volume = 100, pitch = 100)
  @name = name
  @volume = volume
  @pitch = pitch
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



10
11
12
# File 'lib/rgss3/rpg.rb', line 10

def name
  @name
end

#pitchObject

Returns the value of attribute pitch.



12
13
14
# File 'lib/rgss3/rpg.rb', line 12

def pitch
  @pitch
end

#volumeObject

Returns the value of attribute volume.



11
12
13
# File 'lib/rgss3/rpg.rb', line 11

def volume
  @volume
end