]> git.donarmstrong.com Git - kiibohd-kll.git/blob - layouts/mouseTest.kll
0841ec575e6d794793a19a7b4b3496343fe2d3a0
[kiibohd-kll.git] / layouts / mouseTest.kll
1 Name = mouseTest;
2 Version = 0.2;
3 Author = "HaaTa (Jacob Alexander) 2016";
4 KLL = 0.3d;
5
6 # Modified Date
7 Date = 2016-03-21;
8
9 # mouseOut
10 # Arg1, button, 1-8
11 # Arg2, mouse x relative axis -127 to 127
12 # Arg3, mouse y relative axis -127 to 127
13
14 U"1" : mouseOut( 1, 0, 0 );
15 U"2" : mouseOut( 2, 0, 0 );
16 U"3" : mouseOut( 3, 0, 0 );
17 U"4" : mouseOut( 4, 0, 0 );
18 U"5" : mouseOut( 5, 0, 0 );
19 U"6" : mouseOut( 6, 0, 0 );
20 U"7" : mouseOut( 7, 0, 0 );
21 U"8" : mouseOut( 8, 0, 0 );
22
23 U"Up" : mouseOut( 0, 0, 1 );
24 U"Down" : mouseOut( 0, 0, -1 );
25 U"Left" : mouseOut( 0, -1, 0 );
26 U"Right" : mouseOut( 0, 1, 0 );
27
28 U"W" : mouseOut( 0, 0, 5 );
29 U"S" : mouseOut( 0, 0, -5 );
30 U"A" : mouseOut( 0, -5, 0 );
31 U"D" : mouseOut( 0, 5, 0 );
32