comparison dandy/resources/constKey.js @ 1:54589bb5e57d

add dandy
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 23 Feb 2012 14:51:33 +0900
parents
children
comparison
equal deleted inserted replaced
0:718974a1a32b 1:54589bb5e57d
1 pad = new Pad();
2 //キーボード入力
3 const LEFT_ARROW = 37;
4 const UP_ARROW = 38;
5 const RIGHT_ARROW = 39;
6 const DOWN_ARROW = 40;
7 const KEY_D = 68;
8 const KEY_A = 65;
9 const KEY_W = 87;
10 const KEY_E = 69;
11 const KEY_Q = 81;
12 const KEY_Z = 90;
13 const KEY_X = 88;
14 const KEY_R = 82;
15 const KEY_E = 69;
16 const KEY_W = 87;
17 const KEY_S = 83;
18 const ENTER = 13;
19
20
21
22
23 const MAXP = 4090;
24
25 //弾の威力
26 const TAMALV1P = 14;
27 const TAMALV2P = 50;
28 const TAMALV3P = 24;
29
30 //レーザーの威力?
31 const LASERLV1P = 17;
32 const LASERLV2P = 154;
33 const LASERLV3P = 51;
34