We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How would I make a keybinding for if the right mouse button is pressed the following happens.
position = block; console.log("Position: " + position); var blockType = game.getBlock(position); console.log("Checked: " + blockType);
I can get it working with the left button only.
game.on('fire', function (pos){ position = block; console.log("Position: " + position); var blockType = game.getBlock(position); console.log("Checked: " + blockType); })
The text was updated successfully, but these errors were encountered:
Answers here #114
Sorry, something went wrong.
No branches or pull requests
How would I make a keybinding for if the right mouse button is pressed the following happens.
I can get it working with the left button only.
The text was updated successfully, but these errors were encountered: