Class: Raylib::Music
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- Raylib::Music
- Defined in:
- lib/raylib_main.rb
Overview
Music, audio stream, anything longer than ~10 seconds should be streamed
Instance Method Summary collapse
- #ctxData ⇒ Object
- #ctxData=(v) ⇒ Object
- #ctxType ⇒ Object
- #ctxType=(v) ⇒ Object
- #frameCount ⇒ Object
- #frameCount=(v) ⇒ Object
- #looping ⇒ Object
- #looping=(v) ⇒ Object
- #stream ⇒ Object
- #stream=(v) ⇒ Object
Instance Method Details
#ctxData ⇒ Object
1034 |
# File 'lib/raylib_main.rb', line 1034 def ctxData = self[:ctxData] |
#ctxData=(v) ⇒ Object
1035 |
# File 'lib/raylib_main.rb', line 1035 def ctxData=(v) self[:ctxData] = v end |
#ctxType ⇒ Object
1032 |
# File 'lib/raylib_main.rb', line 1032 def ctxType = self[:ctxType] |
#ctxType=(v) ⇒ Object
1033 |
# File 'lib/raylib_main.rb', line 1033 def ctxType=(v) self[:ctxType] = v end |
#frameCount ⇒ Object
1028 |
# File 'lib/raylib_main.rb', line 1028 def frameCount = self[:frameCount] |
#frameCount=(v) ⇒ Object
1029 |
# File 'lib/raylib_main.rb', line 1029 def frameCount=(v) self[:frameCount] = v end |
#looping ⇒ Object
1030 |
# File 'lib/raylib_main.rb', line 1030 def looping = self[:looping] |
#looping=(v) ⇒ Object
1031 |
# File 'lib/raylib_main.rb', line 1031 def looping=(v) self[:looping] = v end |
#stream ⇒ Object
1026 |
# File 'lib/raylib_main.rb', line 1026 def stream = self[:stream] |
#stream=(v) ⇒ Object
1027 |
# File 'lib/raylib_main.rb', line 1027 def stream=(v) self[:stream] = v end |