Module: Audio

Defined in:
lib/audio.rb

Class Method Summary (collapse)

Class Method Details

+ (Object) bgm_fade(time)



16
17
18
# File 'lib/audio.rb', line 16

def bgm_fade(time)
  fail NotImplementedError
end

+ (Object) bgm_play(filename, volume = nil, pitch = nil, pos = nil)



8
9
10
# File 'lib/audio.rb', line 8

def bgm_play(filename, volume = nil, pitch = nil, pos = nil)
  fail NotImplementedError
end

+ (Object) bgm_pos



20
21
22
# File 'lib/audio.rb', line 20

def bgm_pos
  fail NotImplementedError
end

+ (Object) bgm_stop



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

def bgm_stop
  fail NotImplementedError
end

+ (Object) bgs_fade(time)



32
33
34
# File 'lib/audio.rb', line 32

def bgs_fade(time)
  fail NotImplementedError
end

+ (Object) bgs_play(filename, volume = nil, pitch = nil, pos = nil)



24
25
26
# File 'lib/audio.rb', line 24

def bgs_play(filename, volume = nil, pitch = nil, pos = nil)
  fail NotImplementedError
end

+ (Object) bgs_pos



36
37
38
# File 'lib/audio.rb', line 36

def bgs_pos
  fail NotImplementedError
end

+ (Object) bgs_stop



28
29
30
# File 'lib/audio.rb', line 28

def bgs_stop
  fail NotImplementedError
end

+ (Object) me_fade(time)



48
49
50
# File 'lib/audio.rb', line 48

def me_fade(time)
  fail NotImplementedError
end

+ (Object) me_play(filename, volume = nil, pitch = nil)



40
41
42
# File 'lib/audio.rb', line 40

def me_play(filename, volume = nil, pitch = nil)
  fail NotImplementedError
end

+ (Object) me_stop



44
45
46
# File 'lib/audio.rb', line 44

def me_stop
  fail NotImplementedError
end

+ (Object) se_play(filename, volume = nil, pitch = nil)



52
53
54
# File 'lib/audio.rb', line 52

def se_play(filename, volume = nil, pitch = nil)
  fail NotImplementedError
end

+ (Object) se_stop



56
57
58
# File 'lib/audio.rb', line 56

def se_stop
  fail NotImplementedError
end

+ (Object) setup_midi



4
5
6
# File 'lib/audio.rb', line 4

def setup_midi
  fail NotImplementedError
end