-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03-teclado-mouse.html
77 lines (68 loc) · 1.92 KB
/
03-teclado-mouse.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Phaser</title>
<script src="phaser.min.js"></script>
</head>
<body>
<script type="text/javascript">
config = {
width: 400,
height: 300,
scene: {preload, create, update},
};
game = new Phaser.Game(config);
function preload() {
this.load.image("sky", "sky.png");
this.load.image("star", "star.png");
}
function create() {
this.add.image(400, 300, "sky");
estrela = this.add.image(20, 20, "star");
// Teclas que vamos usar
// Cada tecla tem um KeyCode. Para ver a lista, acesse
// https://github.com/photonstorm/phaser/blob/master/src/input/keyboard/keys/KeyCodes.js
keys = this.input.keyboard.addKeys({
espaco: Phaser.Input.Keyboard.KeyCodes.SPACE,
esquerda: Phaser.Input.Keyboard.KeyCodes.LEFT,
direita: Phaser.Input.Keyboard.KeyCodes.RIGHT
});
}
function update() {
// Instrução "if" (em português, "se"):
// o código entre chaves {} só executado
// se a condição entre parênteses for verdadeira
// .isDown é verdadeiro somente se a tecla
// está pressionada
if (keys.direita.isDown) {
estrela.x += 5;
}
if (keys.esquerda.isDown) {
estrela.x -= 5;
}
// .JustDown é verdadeiro somente se a tecla
// acabou de ser pressionada
if (Phaser.Input.Keyboard.JustDown(keys.espaco)) {
estrela.y += 20;
}
// this.input.activePointer representa o botão
// esquerdo do mouse (desktop) ou um toque na tela (mobile)
//
// .x e .y representam a posição do mouse ou dedo
//
// Troque isDown por justDown e veja o que acontece
if (this.input.activePointer.isDown) {
estrela.x = this.input.activePointer.x;
estrela.y = this.input.activePointer.y;
}
}
// Exercícios:
//
// 1. Faça a estrela se movimentar em todas as direções
// com o teclado (usando também as setas para cima
// para baixo).
// 2. Impeça a estrela de sair da tela ao movimentá-la
// com as teclas direcionais
</script>
</body>
</html>