Forked from photonstorm/gist:9d92f19507df7462ddd5
Last active
August 29, 2015 14:11
-
-
Save jaggedsoft/7701b4fa65418b045cc4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var game = new Phaser.Game(800, 600, Phaser.AUTO, 'phaser-example', { preload: preload, create: create, update: update }); | |
function preload() { | |
game.load.image('ball', 'assets/sprites/shinyball.png'); | |
} | |
var sprite; | |
function create() { | |
sprite = game.add.sprite(game.world.centerX, game.world.centerY, 'ball'); | |
game.canvas.addEventListener('mousedown', requestLock); | |
game.input.addMoveCallback(move, this); | |
} | |
function requestLock() { | |
game.input.mouse.requestPointerLock(); | |
} | |
function move(pointer, x, y) { | |
if (game.input.mouse.locked) | |
{ | |
sprite.x += game.input.mouse.event.webkitMovementX; | |
sprite.y += game.input.mouse.event.webkitMovementY; | |
} | |
} | |
function update() { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment