Class: Raylib::RenderTexture
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- Raylib::RenderTexture
- Defined in:
- lib/raylib_main.rb
Overview
RenderTexture, fbo for texture rendering
Instance Method Summary collapse
- #depth ⇒ Object
- #depth=(v) ⇒ Object
- #id ⇒ Object
- #id=(v) ⇒ Object
- #texture ⇒ Object
- #texture=(v) ⇒ Object
Instance Method Details
#depth ⇒ Object
615 |
# File 'lib/raylib_main.rb', line 615 def depth = self[:depth] |
#depth=(v) ⇒ Object
616 |
# File 'lib/raylib_main.rb', line 616 def depth=(v) self[:depth] = v end |
#id ⇒ Object
611 |
# File 'lib/raylib_main.rb', line 611 def id = self[:id] |
#id=(v) ⇒ Object
612 |
# File 'lib/raylib_main.rb', line 612 def id=(v) self[:id] = v end |
#texture ⇒ Object
613 |
# File 'lib/raylib_main.rb', line 613 def texture = self[:texture] |
#texture=(v) ⇒ Object
614 |
# File 'lib/raylib_main.rb', line 614 def texture=(v) self[:texture] = v end |