cubiq Posted March 3, 2014 Share Posted March 3, 2014 is there an integrated way to get the last keydown (of actually pressed keys) inside the "update"? At the moment I've found two workarounds, one by checking the timestamps the other with event listeners (basically overriding the internal ones). Am I missing something? thanks Link to comment Share on other sites More sharing options...
rich Posted March 3, 2014 Share Posted March 3, 2014 In 1.2 you can get this from Keyboard.event - which holds the last stored DOM event. Prior to that you'll need to add an event listener for keydown and record it yourself. Link to comment Share on other sites More sharing options...
Recommended Posts