forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyboard hotkeys.js
More file actions
43 lines (28 loc) · 1.1 KB
/
Copy pathkeyboard hotkeys.js
File metadata and controls
43 lines (28 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
var game = new Phaser.Game(800, 600, Phaser.AUTO, 'phaser-example', { preload: preload, create: create });
function preload() {
game.load.image('phaser', 'assets/sprites/phaser-dude.png');
game.load.image('logo', 'assets/sprites/phaser_tiny.png');
game.load.image('pineapple', 'assets/sprites/pineapple.png');
}
var key1;
var key2;
var key3;
function create() {
game.stage.backgroundColor = '#736357';
// Here we create 3 hotkeys, keys 1-3 and bind them all to their own functions
key1 = game.input.keyboard.addKey(Phaser.Keyboard.ONE);
key1.onDown.add(addPhaserDude, this);
key2 = game.input.keyboard.addKey(Phaser.Keyboard.TWO);
key2.onDown.add(addPhaserLogo, this);
key3 = game.input.keyboard.addKey(Phaser.Keyboard.THREE);
key3.onDown.add(addPineapple, this);
}
function addPhaserDude () {
game.add.sprite(game.world.randomX, game.world.randomY, 'phaser');
}
function addPhaserLogo () {
game.add.sprite(game.world.randomX, game.world.randomY, 'logo');
}
function addPineapple () {
game.add.sprite(game.world.randomX, game.world.randomY, 'pineapple');
}