Jump to content

Fullscreen monitoring


Bernardo
 Share

Recommended Posts

Hi!

 

I'm trying to listen to a key pressing/releasing with the help of this tutorial topic:

 

https://github.com/kittykatattack/learningPixi#keyboard

 

I prety much copied and pasted the code (changed very little) and it's working. The problem is that it doesn't work for the ESC key when the game is in fullscreen. Other keys work, ESC works when not in fullscreen. The browser only gets out of the fullscreen mode, without doing what I need it to do. In this case, it's only console.log something, but I'll need the functionnality because I'll have to performe several actions when the user takes his/her eyes out of the game. It's acctually a test. That's why. I want to terminate the test if the user hits Esc, Alt+Tab, etc.

 

The function keyboard(keycode) is exacty the same as in the tutorial.

 

And here's how I'm using it for the Esc key:

var keyObjectEsc = keyboard(27);keyObjectEsc.press = function() {	console.log('Esc pressed');};keyObjectEsc.release = function() {	console.log('Esc released');};

Any help is highly appreciated!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...