Class: Raylib::Camera
- Inherits:
-
Object
- Object
- Raylib::Camera
- Defined in:
- lib/raylib_helper.rb
Overview
Camera helper
Instance Method Summary collapse
- #fovy ⇒ Object
- #fovy=(v) ⇒ Object
- #position ⇒ Object
- #projection ⇒ Object
- #projection=(v) ⇒ Object
- #target ⇒ Object
- #up ⇒ Object
Instance Method Details
#fovy ⇒ Object
376 377 378 |
# File 'lib/raylib_helper.rb', line 376 def fovy self[:fovy] end |
#fovy=(v) ⇒ Object
380 381 382 |
# File 'lib/raylib_helper.rb', line 380 def fovy=(v) self[:fovy] = v end |
#position ⇒ Object
364 365 366 |
# File 'lib/raylib_helper.rb', line 364 def position self[:position] end |
#projection ⇒ Object
384 385 386 |
# File 'lib/raylib_helper.rb', line 384 def projection self[:projection] end |
#projection=(v) ⇒ Object
388 389 390 |
# File 'lib/raylib_helper.rb', line 388 def projection=(v) self[:projection] = v end |
#target ⇒ Object
368 369 370 |
# File 'lib/raylib_helper.rb', line 368 def target self[:target] end |
#up ⇒ Object
372 373 374 |
# File 'lib/raylib_helper.rb', line 372 def up self[:up] end |