Class: Raylib::Camera

Inherits:
Object
  • Object
show all
Defined in:
lib/raylib_helper.rb

Overview

Camera helper

Instance Method Summary collapse

Instance Method Details

#fovyObject



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

#positionObject



364
365
366
# File 'lib/raylib_helper.rb', line 364

def position
  self[:position]
end

#projectionObject



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

#targetObject



368
369
370
# File 'lib/raylib_helper.rb', line 368

def target
  self[:target]
end

#upObject



372
373
374
# File 'lib/raylib_helper.rb', line 372

def up
  self[:up]
end