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
1024 |
# File 'lib/raylib_main.rb', line 1024 def ctxData = self[:ctxData] |
#ctxData=(v) ⇒ Object
1025 |
# File 'lib/raylib_main.rb', line 1025 def ctxData=(v) self[:ctxData] = v end |
#ctxType ⇒ Object
1022 |
# File 'lib/raylib_main.rb', line 1022 def ctxType = self[:ctxType] |
#ctxType=(v) ⇒ Object
1023 |
# File 'lib/raylib_main.rb', line 1023 def ctxType=(v) self[:ctxType] = v end |
#frameCount ⇒ Object
1018 |
# File 'lib/raylib_main.rb', line 1018 def frameCount = self[:frameCount] |
#frameCount=(v) ⇒ Object
1019 |
# File 'lib/raylib_main.rb', line 1019 def frameCount=(v) self[:frameCount] = v end |
#looping ⇒ Object
1020 |
# File 'lib/raylib_main.rb', line 1020 def looping = self[:looping] |
#looping=(v) ⇒ Object
1021 |
# File 'lib/raylib_main.rb', line 1021 def looping=(v) self[:looping] = v end |
#stream ⇒ Object
1016 |
# File 'lib/raylib_main.rb', line 1016 def stream = self[:stream] |
#stream=(v) ⇒ Object
1017 |
# File 'lib/raylib_main.rb', line 1017 def stream=(v) self[:stream] = v end |