annotate webGL/dandy/resources/constKey.js @ 12:61febc94fa62

upload dandy4.html,new xmlFile
author NOBUYASU Oshiro
date Thu, 15 Jul 2010 07:08:37 +0900
parents 680b5b0cd1e4
children 2018ad94fd9b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
1 pad = new Pad();
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
2 //キーボード入力
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
3 const LEFT_ARROW = 37;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
4 const UP_ARROW = 38;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
5 const RIGHT_ARROW = 39;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
6 const DOWN_ARROW = 40;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
7 const KEY_D = 68;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
8 const KEY_A = 65;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
9 const KEY_W = 87;
12
61febc94fa62 upload dandy4.html,new xmlFile
NOBUYASU Oshiro
parents: 11
diff changeset
10 const KEY_E = 69;
61febc94fa62 upload dandy4.html,new xmlFile
NOBUYASU Oshiro
parents: 11
diff changeset
11 const KEY_Q = 81;
7
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
12 const KEY_Z = 90;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
13 const KEY_X = 88;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
14 const KEY_R = 82;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
15 const KEY_E = 69;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
16 const KEY_W = 87;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
17 const KEY_S = 83;
11
NOBUYASU Oshiro
parents: 7
diff changeset
18 const ENTER = 13;
7
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
19
12
61febc94fa62 upload dandy4.html,new xmlFile
NOBUYASU Oshiro
parents: 11
diff changeset
20
61febc94fa62 upload dandy4.html,new xmlFile
NOBUYASU Oshiro
parents: 11
diff changeset
21
61febc94fa62 upload dandy4.html,new xmlFile
NOBUYASU Oshiro
parents: 11
diff changeset
22 const MAXP = 4090;
61febc94fa62 upload dandy4.html,new xmlFile
NOBUYASU Oshiro
parents: 11
diff changeset
23
7
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
24 //弾の威力
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
25 const TAMALV1P = 14;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
26 const TAMALV2P = 50;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
27 const TAMALV3P = 24;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
28
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
29 //レーザーの威力?
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
30 const LASERLV1P = 17;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
31 const LASERLV2P = 154;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
32 const LASERLV3P = 51;
4343c1feedb5 upload boss.js xmlAlpha file
NOBUYASU Oshiro
parents:
diff changeset
33