Module: Lotu::InputManagerSystem::UserMethods

Defined in:
lib/lotu/systems/input_manager_system.rb

Instance Method Summary collapse

Instance Method Details

#button_down(key) ⇒ Object



65
66
67
# File 'lib/lotu/systems/input_manager_system.rb', line 65

def button_down(key)
  systems[InputManagerSystem].button_down(key)
end

#button_up(key) ⇒ Object



69
70
71
# File 'lib/lotu/systems/input_manager_system.rb', line 69

def button_up(key)
  systems[InputManagerSystem].button_up(key)
end

#set_keys(keys) ⇒ Object



61
62
63
# File 'lib/lotu/systems/input_manager_system.rb', line 61

def set_keys(keys)
  systems[InputManagerSystem].set_keys(self, keys)
end