Class: Ruby2D::Sound
- Inherits:
-
Object
- Object
- Ruby2D::Sound
- Defined in:
- lib/ruby2d/sound.rb,
ext/ruby2d/ruby2d-opal.rb
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
- #ext_sound_init(path) ⇒ Object
- #ext_sound_play ⇒ Object
-
#initialize(path) ⇒ Sound
constructor
A new instance of Sound.
- #play ⇒ Object
Constructor Details
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data.
6 7 8 |
# File 'lib/ruby2d/sound.rb', line 6 def data @data end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
7 8 9 |
# File 'lib/ruby2d/sound.rb', line 7 def path @path end |
Instance Method Details
#ext_sound_init(path) ⇒ Object
222 223 224 |
# File 'ext/ruby2d/ruby2d-opal.rb', line 222 def ext_sound_init(path) `#{self}.data = S2D.CreateSound(path);` end |
#ext_sound_play ⇒ Object
226 227 228 |
# File 'ext/ruby2d/ruby2d-opal.rb', line 226 def ext_sound_play `S2D.PlaySound(#{self}.data);` end |
#play ⇒ Object
21 22 23 |
# File 'lib/ruby2d/sound.rb', line 21 def play ext_sound_play end |