-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathFastTouchscreen.cs
More file actions
8070 lines (7455 loc) · 385 KB
/
Copy pathFastTouchscreen.cs
File metadata and controls
8070 lines (7455 loc) · 385 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <auto-generated>
// This code was auto-generated by com.unity.inputsystem:InputLayoutCodeGenerator
// version 1.20.1
// from "Touchscreen" layout
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using UnityEngine.InputSystem;
using UnityEngine.InputSystem.LowLevel;
using UnityEngine.InputSystem.Utilities;
// Suppress warnings from local variables for control references that we don't end up using.
#pragma warning disable CS0219
// Suppress warnings from obsolete code when references from auto-generated code from the same code base.
#pragma warning disable CS0618
namespace UnityEngine.InputSystem
{
internal partial class FastTouchscreen : UnityEngine.InputSystem.Touchscreen
{
public const string metadata = "AutoWindowSpace;Touch;Vector2;Delta;Analog;TouchPress;Button;Axis;Integer;TouchPhase;Double;Touchscreen;Pointer";
public FastTouchscreen()
{
var builder = this.Setup(302, 5, 0)
.WithName("Touchscreen")
.WithDisplayName("Touchscreen")
.WithChildren(0, 17)
.WithLayout(new InternedString("Touchscreen"))
.WithStateBlock(new InputStateBlock { format = new FourCC(1414742866), sizeInBits = 4928 });
var kTouchLayout = new InternedString("Touch");
var kVector2Layout = new InternedString("Vector2");
var kDeltaLayout = new InternedString("Delta");
var kAnalogLayout = new InternedString("Analog");
var kTouchPressLayout = new InternedString("TouchPress");
var kIntegerLayout = new InternedString("Integer");
var kAxisLayout = new InternedString("Axis");
var kTouchPhaseLayout = new InternedString("TouchPhase");
var kButtonLayout = new InternedString("Button");
var kDoubleLayout = new InternedString("Double");
// /Touchscreen/primaryTouch
var ctrlTouchscreenprimaryTouch = Initialize_ctrlTouchscreenprimaryTouch(kTouchLayout, this);
// /Touchscreen/position
var ctrlTouchscreenposition = Initialize_ctrlTouchscreenposition(kVector2Layout, this);
// /Touchscreen/delta
var ctrlTouchscreendelta = Initialize_ctrlTouchscreendelta(kDeltaLayout, this);
// /Touchscreen/pressure
var ctrlTouchscreenpressure = Initialize_ctrlTouchscreenpressure(kAnalogLayout, this);
// /Touchscreen/radius
var ctrlTouchscreenradius = Initialize_ctrlTouchscreenradius(kVector2Layout, this);
// /Touchscreen/press
var ctrlTouchscreenpress = Initialize_ctrlTouchscreenpress(kTouchPressLayout, this);
// /Touchscreen/displayIndex
var ctrlTouchscreendisplayIndex = Initialize_ctrlTouchscreendisplayIndex(kIntegerLayout, this);
// /Touchscreen/touch0
var ctrlTouchscreentouch0 = Initialize_ctrlTouchscreentouch0(kTouchLayout, this);
// /Touchscreen/touch1
var ctrlTouchscreentouch1 = Initialize_ctrlTouchscreentouch1(kTouchLayout, this);
// /Touchscreen/touch2
var ctrlTouchscreentouch2 = Initialize_ctrlTouchscreentouch2(kTouchLayout, this);
// /Touchscreen/touch3
var ctrlTouchscreentouch3 = Initialize_ctrlTouchscreentouch3(kTouchLayout, this);
// /Touchscreen/touch4
var ctrlTouchscreentouch4 = Initialize_ctrlTouchscreentouch4(kTouchLayout, this);
// /Touchscreen/touch5
var ctrlTouchscreentouch5 = Initialize_ctrlTouchscreentouch5(kTouchLayout, this);
// /Touchscreen/touch6
var ctrlTouchscreentouch6 = Initialize_ctrlTouchscreentouch6(kTouchLayout, this);
// /Touchscreen/touch7
var ctrlTouchscreentouch7 = Initialize_ctrlTouchscreentouch7(kTouchLayout, this);
// /Touchscreen/touch8
var ctrlTouchscreentouch8 = Initialize_ctrlTouchscreentouch8(kTouchLayout, this);
// /Touchscreen/touch9
var ctrlTouchscreentouch9 = Initialize_ctrlTouchscreentouch9(kTouchLayout, this);
// /Touchscreen/primaryTouch/touchId
var ctrlTouchscreenprimaryTouchtouchId = Initialize_ctrlTouchscreenprimaryTouchtouchId(kIntegerLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/position
var ctrlTouchscreenprimaryTouchposition = Initialize_ctrlTouchscreenprimaryTouchposition(kVector2Layout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/delta
var ctrlTouchscreenprimaryTouchdelta = Initialize_ctrlTouchscreenprimaryTouchdelta(kDeltaLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/pressure
var ctrlTouchscreenprimaryTouchpressure = Initialize_ctrlTouchscreenprimaryTouchpressure(kAxisLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/radius
var ctrlTouchscreenprimaryTouchradius = Initialize_ctrlTouchscreenprimaryTouchradius(kVector2Layout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/phase
var ctrlTouchscreenprimaryTouchphase = Initialize_ctrlTouchscreenprimaryTouchphase(kTouchPhaseLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/press
var ctrlTouchscreenprimaryTouchpress = Initialize_ctrlTouchscreenprimaryTouchpress(kTouchPressLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/tapCount
var ctrlTouchscreenprimaryTouchtapCount = Initialize_ctrlTouchscreenprimaryTouchtapCount(kIntegerLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/displayIndex
var ctrlTouchscreenprimaryTouchdisplayIndex = Initialize_ctrlTouchscreenprimaryTouchdisplayIndex(kIntegerLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/indirectTouch
var ctrlTouchscreenprimaryTouchindirectTouch = Initialize_ctrlTouchscreenprimaryTouchindirectTouch(kButtonLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/tap
var ctrlTouchscreenprimaryTouchtap = Initialize_ctrlTouchscreenprimaryTouchtap(kButtonLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/startTime
var ctrlTouchscreenprimaryTouchstartTime = Initialize_ctrlTouchscreenprimaryTouchstartTime(kDoubleLayout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/startPosition
var ctrlTouchscreenprimaryTouchstartPosition = Initialize_ctrlTouchscreenprimaryTouchstartPosition(kVector2Layout, ctrlTouchscreenprimaryTouch);
// /Touchscreen/primaryTouch/position/x
var ctrlTouchscreenprimaryTouchpositionx = Initialize_ctrlTouchscreenprimaryTouchpositionx(kAxisLayout, ctrlTouchscreenprimaryTouchposition);
// /Touchscreen/primaryTouch/position/y
var ctrlTouchscreenprimaryTouchpositiony = Initialize_ctrlTouchscreenprimaryTouchpositiony(kAxisLayout, ctrlTouchscreenprimaryTouchposition);
// /Touchscreen/primaryTouch/delta/up
var ctrlTouchscreenprimaryTouchdeltaup = Initialize_ctrlTouchscreenprimaryTouchdeltaup(kAxisLayout, ctrlTouchscreenprimaryTouchdelta);
// /Touchscreen/primaryTouch/delta/down
var ctrlTouchscreenprimaryTouchdeltadown = Initialize_ctrlTouchscreenprimaryTouchdeltadown(kAxisLayout, ctrlTouchscreenprimaryTouchdelta);
// /Touchscreen/primaryTouch/delta/left
var ctrlTouchscreenprimaryTouchdeltaleft = Initialize_ctrlTouchscreenprimaryTouchdeltaleft(kAxisLayout, ctrlTouchscreenprimaryTouchdelta);
// /Touchscreen/primaryTouch/delta/right
var ctrlTouchscreenprimaryTouchdeltaright = Initialize_ctrlTouchscreenprimaryTouchdeltaright(kAxisLayout, ctrlTouchscreenprimaryTouchdelta);
// /Touchscreen/primaryTouch/delta/x
var ctrlTouchscreenprimaryTouchdeltax = Initialize_ctrlTouchscreenprimaryTouchdeltax(kAxisLayout, ctrlTouchscreenprimaryTouchdelta);
// /Touchscreen/primaryTouch/delta/y
var ctrlTouchscreenprimaryTouchdeltay = Initialize_ctrlTouchscreenprimaryTouchdeltay(kAxisLayout, ctrlTouchscreenprimaryTouchdelta);
// /Touchscreen/primaryTouch/radius/x
var ctrlTouchscreenprimaryTouchradiusx = Initialize_ctrlTouchscreenprimaryTouchradiusx(kAxisLayout, ctrlTouchscreenprimaryTouchradius);
// /Touchscreen/primaryTouch/radius/y
var ctrlTouchscreenprimaryTouchradiusy = Initialize_ctrlTouchscreenprimaryTouchradiusy(kAxisLayout, ctrlTouchscreenprimaryTouchradius);
// /Touchscreen/primaryTouch/startPosition/x
var ctrlTouchscreenprimaryTouchstartPositionx = Initialize_ctrlTouchscreenprimaryTouchstartPositionx(kAxisLayout, ctrlTouchscreenprimaryTouchstartPosition);
// /Touchscreen/primaryTouch/startPosition/y
var ctrlTouchscreenprimaryTouchstartPositiony = Initialize_ctrlTouchscreenprimaryTouchstartPositiony(kAxisLayout, ctrlTouchscreenprimaryTouchstartPosition);
// /Touchscreen/position/x
var ctrlTouchscreenpositionx = Initialize_ctrlTouchscreenpositionx(kAxisLayout, ctrlTouchscreenposition);
// /Touchscreen/position/y
var ctrlTouchscreenpositiony = Initialize_ctrlTouchscreenpositiony(kAxisLayout, ctrlTouchscreenposition);
// /Touchscreen/delta/up
var ctrlTouchscreendeltaup = Initialize_ctrlTouchscreendeltaup(kAxisLayout, ctrlTouchscreendelta);
// /Touchscreen/delta/down
var ctrlTouchscreendeltadown = Initialize_ctrlTouchscreendeltadown(kAxisLayout, ctrlTouchscreendelta);
// /Touchscreen/delta/left
var ctrlTouchscreendeltaleft = Initialize_ctrlTouchscreendeltaleft(kAxisLayout, ctrlTouchscreendelta);
// /Touchscreen/delta/right
var ctrlTouchscreendeltaright = Initialize_ctrlTouchscreendeltaright(kAxisLayout, ctrlTouchscreendelta);
// /Touchscreen/delta/x
var ctrlTouchscreendeltax = Initialize_ctrlTouchscreendeltax(kAxisLayout, ctrlTouchscreendelta);
// /Touchscreen/delta/y
var ctrlTouchscreendeltay = Initialize_ctrlTouchscreendeltay(kAxisLayout, ctrlTouchscreendelta);
// /Touchscreen/radius/x
var ctrlTouchscreenradiusx = Initialize_ctrlTouchscreenradiusx(kAxisLayout, ctrlTouchscreenradius);
// /Touchscreen/radius/y
var ctrlTouchscreenradiusy = Initialize_ctrlTouchscreenradiusy(kAxisLayout, ctrlTouchscreenradius);
// /Touchscreen/touch0/touchId
var ctrlTouchscreentouch0touchId = Initialize_ctrlTouchscreentouch0touchId(kIntegerLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/position
var ctrlTouchscreentouch0position = Initialize_ctrlTouchscreentouch0position(kVector2Layout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/delta
var ctrlTouchscreentouch0delta = Initialize_ctrlTouchscreentouch0delta(kDeltaLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/pressure
var ctrlTouchscreentouch0pressure = Initialize_ctrlTouchscreentouch0pressure(kAxisLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/radius
var ctrlTouchscreentouch0radius = Initialize_ctrlTouchscreentouch0radius(kVector2Layout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/phase
var ctrlTouchscreentouch0phase = Initialize_ctrlTouchscreentouch0phase(kTouchPhaseLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/press
var ctrlTouchscreentouch0press = Initialize_ctrlTouchscreentouch0press(kTouchPressLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/tapCount
var ctrlTouchscreentouch0tapCount = Initialize_ctrlTouchscreentouch0tapCount(kIntegerLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/displayIndex
var ctrlTouchscreentouch0displayIndex = Initialize_ctrlTouchscreentouch0displayIndex(kIntegerLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/indirectTouch
var ctrlTouchscreentouch0indirectTouch = Initialize_ctrlTouchscreentouch0indirectTouch(kButtonLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/tap
var ctrlTouchscreentouch0tap = Initialize_ctrlTouchscreentouch0tap(kButtonLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/startTime
var ctrlTouchscreentouch0startTime = Initialize_ctrlTouchscreentouch0startTime(kDoubleLayout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/startPosition
var ctrlTouchscreentouch0startPosition = Initialize_ctrlTouchscreentouch0startPosition(kVector2Layout, ctrlTouchscreentouch0);
// /Touchscreen/touch0/position/x
var ctrlTouchscreentouch0positionx = Initialize_ctrlTouchscreentouch0positionx(kAxisLayout, ctrlTouchscreentouch0position);
// /Touchscreen/touch0/position/y
var ctrlTouchscreentouch0positiony = Initialize_ctrlTouchscreentouch0positiony(kAxisLayout, ctrlTouchscreentouch0position);
// /Touchscreen/touch0/delta/up
var ctrlTouchscreentouch0deltaup = Initialize_ctrlTouchscreentouch0deltaup(kAxisLayout, ctrlTouchscreentouch0delta);
// /Touchscreen/touch0/delta/down
var ctrlTouchscreentouch0deltadown = Initialize_ctrlTouchscreentouch0deltadown(kAxisLayout, ctrlTouchscreentouch0delta);
// /Touchscreen/touch0/delta/left
var ctrlTouchscreentouch0deltaleft = Initialize_ctrlTouchscreentouch0deltaleft(kAxisLayout, ctrlTouchscreentouch0delta);
// /Touchscreen/touch0/delta/right
var ctrlTouchscreentouch0deltaright = Initialize_ctrlTouchscreentouch0deltaright(kAxisLayout, ctrlTouchscreentouch0delta);
// /Touchscreen/touch0/delta/x
var ctrlTouchscreentouch0deltax = Initialize_ctrlTouchscreentouch0deltax(kAxisLayout, ctrlTouchscreentouch0delta);
// /Touchscreen/touch0/delta/y
var ctrlTouchscreentouch0deltay = Initialize_ctrlTouchscreentouch0deltay(kAxisLayout, ctrlTouchscreentouch0delta);
// /Touchscreen/touch0/radius/x
var ctrlTouchscreentouch0radiusx = Initialize_ctrlTouchscreentouch0radiusx(kAxisLayout, ctrlTouchscreentouch0radius);
// /Touchscreen/touch0/radius/y
var ctrlTouchscreentouch0radiusy = Initialize_ctrlTouchscreentouch0radiusy(kAxisLayout, ctrlTouchscreentouch0radius);
// /Touchscreen/touch0/startPosition/x
var ctrlTouchscreentouch0startPositionx = Initialize_ctrlTouchscreentouch0startPositionx(kAxisLayout, ctrlTouchscreentouch0startPosition);
// /Touchscreen/touch0/startPosition/y
var ctrlTouchscreentouch0startPositiony = Initialize_ctrlTouchscreentouch0startPositiony(kAxisLayout, ctrlTouchscreentouch0startPosition);
// /Touchscreen/touch1/touchId
var ctrlTouchscreentouch1touchId = Initialize_ctrlTouchscreentouch1touchId(kIntegerLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/position
var ctrlTouchscreentouch1position = Initialize_ctrlTouchscreentouch1position(kVector2Layout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/delta
var ctrlTouchscreentouch1delta = Initialize_ctrlTouchscreentouch1delta(kDeltaLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/pressure
var ctrlTouchscreentouch1pressure = Initialize_ctrlTouchscreentouch1pressure(kAxisLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/radius
var ctrlTouchscreentouch1radius = Initialize_ctrlTouchscreentouch1radius(kVector2Layout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/phase
var ctrlTouchscreentouch1phase = Initialize_ctrlTouchscreentouch1phase(kTouchPhaseLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/press
var ctrlTouchscreentouch1press = Initialize_ctrlTouchscreentouch1press(kTouchPressLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/tapCount
var ctrlTouchscreentouch1tapCount = Initialize_ctrlTouchscreentouch1tapCount(kIntegerLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/displayIndex
var ctrlTouchscreentouch1displayIndex = Initialize_ctrlTouchscreentouch1displayIndex(kIntegerLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/indirectTouch
var ctrlTouchscreentouch1indirectTouch = Initialize_ctrlTouchscreentouch1indirectTouch(kButtonLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/tap
var ctrlTouchscreentouch1tap = Initialize_ctrlTouchscreentouch1tap(kButtonLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/startTime
var ctrlTouchscreentouch1startTime = Initialize_ctrlTouchscreentouch1startTime(kDoubleLayout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/startPosition
var ctrlTouchscreentouch1startPosition = Initialize_ctrlTouchscreentouch1startPosition(kVector2Layout, ctrlTouchscreentouch1);
// /Touchscreen/touch1/position/x
var ctrlTouchscreentouch1positionx = Initialize_ctrlTouchscreentouch1positionx(kAxisLayout, ctrlTouchscreentouch1position);
// /Touchscreen/touch1/position/y
var ctrlTouchscreentouch1positiony = Initialize_ctrlTouchscreentouch1positiony(kAxisLayout, ctrlTouchscreentouch1position);
// /Touchscreen/touch1/delta/up
var ctrlTouchscreentouch1deltaup = Initialize_ctrlTouchscreentouch1deltaup(kAxisLayout, ctrlTouchscreentouch1delta);
// /Touchscreen/touch1/delta/down
var ctrlTouchscreentouch1deltadown = Initialize_ctrlTouchscreentouch1deltadown(kAxisLayout, ctrlTouchscreentouch1delta);
// /Touchscreen/touch1/delta/left
var ctrlTouchscreentouch1deltaleft = Initialize_ctrlTouchscreentouch1deltaleft(kAxisLayout, ctrlTouchscreentouch1delta);
// /Touchscreen/touch1/delta/right
var ctrlTouchscreentouch1deltaright = Initialize_ctrlTouchscreentouch1deltaright(kAxisLayout, ctrlTouchscreentouch1delta);
// /Touchscreen/touch1/delta/x
var ctrlTouchscreentouch1deltax = Initialize_ctrlTouchscreentouch1deltax(kAxisLayout, ctrlTouchscreentouch1delta);
// /Touchscreen/touch1/delta/y
var ctrlTouchscreentouch1deltay = Initialize_ctrlTouchscreentouch1deltay(kAxisLayout, ctrlTouchscreentouch1delta);
// /Touchscreen/touch1/radius/x
var ctrlTouchscreentouch1radiusx = Initialize_ctrlTouchscreentouch1radiusx(kAxisLayout, ctrlTouchscreentouch1radius);
// /Touchscreen/touch1/radius/y
var ctrlTouchscreentouch1radiusy = Initialize_ctrlTouchscreentouch1radiusy(kAxisLayout, ctrlTouchscreentouch1radius);
// /Touchscreen/touch1/startPosition/x
var ctrlTouchscreentouch1startPositionx = Initialize_ctrlTouchscreentouch1startPositionx(kAxisLayout, ctrlTouchscreentouch1startPosition);
// /Touchscreen/touch1/startPosition/y
var ctrlTouchscreentouch1startPositiony = Initialize_ctrlTouchscreentouch1startPositiony(kAxisLayout, ctrlTouchscreentouch1startPosition);
// /Touchscreen/touch2/touchId
var ctrlTouchscreentouch2touchId = Initialize_ctrlTouchscreentouch2touchId(kIntegerLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/position
var ctrlTouchscreentouch2position = Initialize_ctrlTouchscreentouch2position(kVector2Layout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/delta
var ctrlTouchscreentouch2delta = Initialize_ctrlTouchscreentouch2delta(kDeltaLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/pressure
var ctrlTouchscreentouch2pressure = Initialize_ctrlTouchscreentouch2pressure(kAxisLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/radius
var ctrlTouchscreentouch2radius = Initialize_ctrlTouchscreentouch2radius(kVector2Layout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/phase
var ctrlTouchscreentouch2phase = Initialize_ctrlTouchscreentouch2phase(kTouchPhaseLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/press
var ctrlTouchscreentouch2press = Initialize_ctrlTouchscreentouch2press(kTouchPressLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/tapCount
var ctrlTouchscreentouch2tapCount = Initialize_ctrlTouchscreentouch2tapCount(kIntegerLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/displayIndex
var ctrlTouchscreentouch2displayIndex = Initialize_ctrlTouchscreentouch2displayIndex(kIntegerLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/indirectTouch
var ctrlTouchscreentouch2indirectTouch = Initialize_ctrlTouchscreentouch2indirectTouch(kButtonLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/tap
var ctrlTouchscreentouch2tap = Initialize_ctrlTouchscreentouch2tap(kButtonLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/startTime
var ctrlTouchscreentouch2startTime = Initialize_ctrlTouchscreentouch2startTime(kDoubleLayout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/startPosition
var ctrlTouchscreentouch2startPosition = Initialize_ctrlTouchscreentouch2startPosition(kVector2Layout, ctrlTouchscreentouch2);
// /Touchscreen/touch2/position/x
var ctrlTouchscreentouch2positionx = Initialize_ctrlTouchscreentouch2positionx(kAxisLayout, ctrlTouchscreentouch2position);
// /Touchscreen/touch2/position/y
var ctrlTouchscreentouch2positiony = Initialize_ctrlTouchscreentouch2positiony(kAxisLayout, ctrlTouchscreentouch2position);
// /Touchscreen/touch2/delta/up
var ctrlTouchscreentouch2deltaup = Initialize_ctrlTouchscreentouch2deltaup(kAxisLayout, ctrlTouchscreentouch2delta);
// /Touchscreen/touch2/delta/down
var ctrlTouchscreentouch2deltadown = Initialize_ctrlTouchscreentouch2deltadown(kAxisLayout, ctrlTouchscreentouch2delta);
// /Touchscreen/touch2/delta/left
var ctrlTouchscreentouch2deltaleft = Initialize_ctrlTouchscreentouch2deltaleft(kAxisLayout, ctrlTouchscreentouch2delta);
// /Touchscreen/touch2/delta/right
var ctrlTouchscreentouch2deltaright = Initialize_ctrlTouchscreentouch2deltaright(kAxisLayout, ctrlTouchscreentouch2delta);
// /Touchscreen/touch2/delta/x
var ctrlTouchscreentouch2deltax = Initialize_ctrlTouchscreentouch2deltax(kAxisLayout, ctrlTouchscreentouch2delta);
// /Touchscreen/touch2/delta/y
var ctrlTouchscreentouch2deltay = Initialize_ctrlTouchscreentouch2deltay(kAxisLayout, ctrlTouchscreentouch2delta);
// /Touchscreen/touch2/radius/x
var ctrlTouchscreentouch2radiusx = Initialize_ctrlTouchscreentouch2radiusx(kAxisLayout, ctrlTouchscreentouch2radius);
// /Touchscreen/touch2/radius/y
var ctrlTouchscreentouch2radiusy = Initialize_ctrlTouchscreentouch2radiusy(kAxisLayout, ctrlTouchscreentouch2radius);
// /Touchscreen/touch2/startPosition/x
var ctrlTouchscreentouch2startPositionx = Initialize_ctrlTouchscreentouch2startPositionx(kAxisLayout, ctrlTouchscreentouch2startPosition);
// /Touchscreen/touch2/startPosition/y
var ctrlTouchscreentouch2startPositiony = Initialize_ctrlTouchscreentouch2startPositiony(kAxisLayout, ctrlTouchscreentouch2startPosition);
// /Touchscreen/touch3/touchId
var ctrlTouchscreentouch3touchId = Initialize_ctrlTouchscreentouch3touchId(kIntegerLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/position
var ctrlTouchscreentouch3position = Initialize_ctrlTouchscreentouch3position(kVector2Layout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/delta
var ctrlTouchscreentouch3delta = Initialize_ctrlTouchscreentouch3delta(kDeltaLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/pressure
var ctrlTouchscreentouch3pressure = Initialize_ctrlTouchscreentouch3pressure(kAxisLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/radius
var ctrlTouchscreentouch3radius = Initialize_ctrlTouchscreentouch3radius(kVector2Layout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/phase
var ctrlTouchscreentouch3phase = Initialize_ctrlTouchscreentouch3phase(kTouchPhaseLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/press
var ctrlTouchscreentouch3press = Initialize_ctrlTouchscreentouch3press(kTouchPressLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/tapCount
var ctrlTouchscreentouch3tapCount = Initialize_ctrlTouchscreentouch3tapCount(kIntegerLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/displayIndex
var ctrlTouchscreentouch3displayIndex = Initialize_ctrlTouchscreentouch3displayIndex(kIntegerLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/indirectTouch
var ctrlTouchscreentouch3indirectTouch = Initialize_ctrlTouchscreentouch3indirectTouch(kButtonLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/tap
var ctrlTouchscreentouch3tap = Initialize_ctrlTouchscreentouch3tap(kButtonLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/startTime
var ctrlTouchscreentouch3startTime = Initialize_ctrlTouchscreentouch3startTime(kDoubleLayout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/startPosition
var ctrlTouchscreentouch3startPosition = Initialize_ctrlTouchscreentouch3startPosition(kVector2Layout, ctrlTouchscreentouch3);
// /Touchscreen/touch3/position/x
var ctrlTouchscreentouch3positionx = Initialize_ctrlTouchscreentouch3positionx(kAxisLayout, ctrlTouchscreentouch3position);
// /Touchscreen/touch3/position/y
var ctrlTouchscreentouch3positiony = Initialize_ctrlTouchscreentouch3positiony(kAxisLayout, ctrlTouchscreentouch3position);
// /Touchscreen/touch3/delta/up
var ctrlTouchscreentouch3deltaup = Initialize_ctrlTouchscreentouch3deltaup(kAxisLayout, ctrlTouchscreentouch3delta);
// /Touchscreen/touch3/delta/down
var ctrlTouchscreentouch3deltadown = Initialize_ctrlTouchscreentouch3deltadown(kAxisLayout, ctrlTouchscreentouch3delta);
// /Touchscreen/touch3/delta/left
var ctrlTouchscreentouch3deltaleft = Initialize_ctrlTouchscreentouch3deltaleft(kAxisLayout, ctrlTouchscreentouch3delta);
// /Touchscreen/touch3/delta/right
var ctrlTouchscreentouch3deltaright = Initialize_ctrlTouchscreentouch3deltaright(kAxisLayout, ctrlTouchscreentouch3delta);
// /Touchscreen/touch3/delta/x
var ctrlTouchscreentouch3deltax = Initialize_ctrlTouchscreentouch3deltax(kAxisLayout, ctrlTouchscreentouch3delta);
// /Touchscreen/touch3/delta/y
var ctrlTouchscreentouch3deltay = Initialize_ctrlTouchscreentouch3deltay(kAxisLayout, ctrlTouchscreentouch3delta);
// /Touchscreen/touch3/radius/x
var ctrlTouchscreentouch3radiusx = Initialize_ctrlTouchscreentouch3radiusx(kAxisLayout, ctrlTouchscreentouch3radius);
// /Touchscreen/touch3/radius/y
var ctrlTouchscreentouch3radiusy = Initialize_ctrlTouchscreentouch3radiusy(kAxisLayout, ctrlTouchscreentouch3radius);
// /Touchscreen/touch3/startPosition/x
var ctrlTouchscreentouch3startPositionx = Initialize_ctrlTouchscreentouch3startPositionx(kAxisLayout, ctrlTouchscreentouch3startPosition);
// /Touchscreen/touch3/startPosition/y
var ctrlTouchscreentouch3startPositiony = Initialize_ctrlTouchscreentouch3startPositiony(kAxisLayout, ctrlTouchscreentouch3startPosition);
// /Touchscreen/touch4/touchId
var ctrlTouchscreentouch4touchId = Initialize_ctrlTouchscreentouch4touchId(kIntegerLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/position
var ctrlTouchscreentouch4position = Initialize_ctrlTouchscreentouch4position(kVector2Layout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/delta
var ctrlTouchscreentouch4delta = Initialize_ctrlTouchscreentouch4delta(kDeltaLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/pressure
var ctrlTouchscreentouch4pressure = Initialize_ctrlTouchscreentouch4pressure(kAxisLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/radius
var ctrlTouchscreentouch4radius = Initialize_ctrlTouchscreentouch4radius(kVector2Layout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/phase
var ctrlTouchscreentouch4phase = Initialize_ctrlTouchscreentouch4phase(kTouchPhaseLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/press
var ctrlTouchscreentouch4press = Initialize_ctrlTouchscreentouch4press(kTouchPressLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/tapCount
var ctrlTouchscreentouch4tapCount = Initialize_ctrlTouchscreentouch4tapCount(kIntegerLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/displayIndex
var ctrlTouchscreentouch4displayIndex = Initialize_ctrlTouchscreentouch4displayIndex(kIntegerLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/indirectTouch
var ctrlTouchscreentouch4indirectTouch = Initialize_ctrlTouchscreentouch4indirectTouch(kButtonLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/tap
var ctrlTouchscreentouch4tap = Initialize_ctrlTouchscreentouch4tap(kButtonLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/startTime
var ctrlTouchscreentouch4startTime = Initialize_ctrlTouchscreentouch4startTime(kDoubleLayout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/startPosition
var ctrlTouchscreentouch4startPosition = Initialize_ctrlTouchscreentouch4startPosition(kVector2Layout, ctrlTouchscreentouch4);
// /Touchscreen/touch4/position/x
var ctrlTouchscreentouch4positionx = Initialize_ctrlTouchscreentouch4positionx(kAxisLayout, ctrlTouchscreentouch4position);
// /Touchscreen/touch4/position/y
var ctrlTouchscreentouch4positiony = Initialize_ctrlTouchscreentouch4positiony(kAxisLayout, ctrlTouchscreentouch4position);
// /Touchscreen/touch4/delta/up
var ctrlTouchscreentouch4deltaup = Initialize_ctrlTouchscreentouch4deltaup(kAxisLayout, ctrlTouchscreentouch4delta);
// /Touchscreen/touch4/delta/down
var ctrlTouchscreentouch4deltadown = Initialize_ctrlTouchscreentouch4deltadown(kAxisLayout, ctrlTouchscreentouch4delta);
// /Touchscreen/touch4/delta/left
var ctrlTouchscreentouch4deltaleft = Initialize_ctrlTouchscreentouch4deltaleft(kAxisLayout, ctrlTouchscreentouch4delta);
// /Touchscreen/touch4/delta/right
var ctrlTouchscreentouch4deltaright = Initialize_ctrlTouchscreentouch4deltaright(kAxisLayout, ctrlTouchscreentouch4delta);
// /Touchscreen/touch4/delta/x
var ctrlTouchscreentouch4deltax = Initialize_ctrlTouchscreentouch4deltax(kAxisLayout, ctrlTouchscreentouch4delta);
// /Touchscreen/touch4/delta/y
var ctrlTouchscreentouch4deltay = Initialize_ctrlTouchscreentouch4deltay(kAxisLayout, ctrlTouchscreentouch4delta);
// /Touchscreen/touch4/radius/x
var ctrlTouchscreentouch4radiusx = Initialize_ctrlTouchscreentouch4radiusx(kAxisLayout, ctrlTouchscreentouch4radius);
// /Touchscreen/touch4/radius/y
var ctrlTouchscreentouch4radiusy = Initialize_ctrlTouchscreentouch4radiusy(kAxisLayout, ctrlTouchscreentouch4radius);
// /Touchscreen/touch4/startPosition/x
var ctrlTouchscreentouch4startPositionx = Initialize_ctrlTouchscreentouch4startPositionx(kAxisLayout, ctrlTouchscreentouch4startPosition);
// /Touchscreen/touch4/startPosition/y
var ctrlTouchscreentouch4startPositiony = Initialize_ctrlTouchscreentouch4startPositiony(kAxisLayout, ctrlTouchscreentouch4startPosition);
// /Touchscreen/touch5/touchId
var ctrlTouchscreentouch5touchId = Initialize_ctrlTouchscreentouch5touchId(kIntegerLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/position
var ctrlTouchscreentouch5position = Initialize_ctrlTouchscreentouch5position(kVector2Layout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/delta
var ctrlTouchscreentouch5delta = Initialize_ctrlTouchscreentouch5delta(kDeltaLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/pressure
var ctrlTouchscreentouch5pressure = Initialize_ctrlTouchscreentouch5pressure(kAxisLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/radius
var ctrlTouchscreentouch5radius = Initialize_ctrlTouchscreentouch5radius(kVector2Layout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/phase
var ctrlTouchscreentouch5phase = Initialize_ctrlTouchscreentouch5phase(kTouchPhaseLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/press
var ctrlTouchscreentouch5press = Initialize_ctrlTouchscreentouch5press(kTouchPressLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/tapCount
var ctrlTouchscreentouch5tapCount = Initialize_ctrlTouchscreentouch5tapCount(kIntegerLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/displayIndex
var ctrlTouchscreentouch5displayIndex = Initialize_ctrlTouchscreentouch5displayIndex(kIntegerLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/indirectTouch
var ctrlTouchscreentouch5indirectTouch = Initialize_ctrlTouchscreentouch5indirectTouch(kButtonLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/tap
var ctrlTouchscreentouch5tap = Initialize_ctrlTouchscreentouch5tap(kButtonLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/startTime
var ctrlTouchscreentouch5startTime = Initialize_ctrlTouchscreentouch5startTime(kDoubleLayout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/startPosition
var ctrlTouchscreentouch5startPosition = Initialize_ctrlTouchscreentouch5startPosition(kVector2Layout, ctrlTouchscreentouch5);
// /Touchscreen/touch5/position/x
var ctrlTouchscreentouch5positionx = Initialize_ctrlTouchscreentouch5positionx(kAxisLayout, ctrlTouchscreentouch5position);
// /Touchscreen/touch5/position/y
var ctrlTouchscreentouch5positiony = Initialize_ctrlTouchscreentouch5positiony(kAxisLayout, ctrlTouchscreentouch5position);
// /Touchscreen/touch5/delta/up
var ctrlTouchscreentouch5deltaup = Initialize_ctrlTouchscreentouch5deltaup(kAxisLayout, ctrlTouchscreentouch5delta);
// /Touchscreen/touch5/delta/down
var ctrlTouchscreentouch5deltadown = Initialize_ctrlTouchscreentouch5deltadown(kAxisLayout, ctrlTouchscreentouch5delta);
// /Touchscreen/touch5/delta/left
var ctrlTouchscreentouch5deltaleft = Initialize_ctrlTouchscreentouch5deltaleft(kAxisLayout, ctrlTouchscreentouch5delta);
// /Touchscreen/touch5/delta/right
var ctrlTouchscreentouch5deltaright = Initialize_ctrlTouchscreentouch5deltaright(kAxisLayout, ctrlTouchscreentouch5delta);
// /Touchscreen/touch5/delta/x
var ctrlTouchscreentouch5deltax = Initialize_ctrlTouchscreentouch5deltax(kAxisLayout, ctrlTouchscreentouch5delta);
// /Touchscreen/touch5/delta/y
var ctrlTouchscreentouch5deltay = Initialize_ctrlTouchscreentouch5deltay(kAxisLayout, ctrlTouchscreentouch5delta);
// /Touchscreen/touch5/radius/x
var ctrlTouchscreentouch5radiusx = Initialize_ctrlTouchscreentouch5radiusx(kAxisLayout, ctrlTouchscreentouch5radius);
// /Touchscreen/touch5/radius/y
var ctrlTouchscreentouch5radiusy = Initialize_ctrlTouchscreentouch5radiusy(kAxisLayout, ctrlTouchscreentouch5radius);
// /Touchscreen/touch5/startPosition/x
var ctrlTouchscreentouch5startPositionx = Initialize_ctrlTouchscreentouch5startPositionx(kAxisLayout, ctrlTouchscreentouch5startPosition);
// /Touchscreen/touch5/startPosition/y
var ctrlTouchscreentouch5startPositiony = Initialize_ctrlTouchscreentouch5startPositiony(kAxisLayout, ctrlTouchscreentouch5startPosition);
// /Touchscreen/touch6/touchId
var ctrlTouchscreentouch6touchId = Initialize_ctrlTouchscreentouch6touchId(kIntegerLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/position
var ctrlTouchscreentouch6position = Initialize_ctrlTouchscreentouch6position(kVector2Layout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/delta
var ctrlTouchscreentouch6delta = Initialize_ctrlTouchscreentouch6delta(kDeltaLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/pressure
var ctrlTouchscreentouch6pressure = Initialize_ctrlTouchscreentouch6pressure(kAxisLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/radius
var ctrlTouchscreentouch6radius = Initialize_ctrlTouchscreentouch6radius(kVector2Layout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/phase
var ctrlTouchscreentouch6phase = Initialize_ctrlTouchscreentouch6phase(kTouchPhaseLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/press
var ctrlTouchscreentouch6press = Initialize_ctrlTouchscreentouch6press(kTouchPressLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/tapCount
var ctrlTouchscreentouch6tapCount = Initialize_ctrlTouchscreentouch6tapCount(kIntegerLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/displayIndex
var ctrlTouchscreentouch6displayIndex = Initialize_ctrlTouchscreentouch6displayIndex(kIntegerLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/indirectTouch
var ctrlTouchscreentouch6indirectTouch = Initialize_ctrlTouchscreentouch6indirectTouch(kButtonLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/tap
var ctrlTouchscreentouch6tap = Initialize_ctrlTouchscreentouch6tap(kButtonLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/startTime
var ctrlTouchscreentouch6startTime = Initialize_ctrlTouchscreentouch6startTime(kDoubleLayout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/startPosition
var ctrlTouchscreentouch6startPosition = Initialize_ctrlTouchscreentouch6startPosition(kVector2Layout, ctrlTouchscreentouch6);
// /Touchscreen/touch6/position/x
var ctrlTouchscreentouch6positionx = Initialize_ctrlTouchscreentouch6positionx(kAxisLayout, ctrlTouchscreentouch6position);
// /Touchscreen/touch6/position/y
var ctrlTouchscreentouch6positiony = Initialize_ctrlTouchscreentouch6positiony(kAxisLayout, ctrlTouchscreentouch6position);
// /Touchscreen/touch6/delta/up
var ctrlTouchscreentouch6deltaup = Initialize_ctrlTouchscreentouch6deltaup(kAxisLayout, ctrlTouchscreentouch6delta);
// /Touchscreen/touch6/delta/down
var ctrlTouchscreentouch6deltadown = Initialize_ctrlTouchscreentouch6deltadown(kAxisLayout, ctrlTouchscreentouch6delta);
// /Touchscreen/touch6/delta/left
var ctrlTouchscreentouch6deltaleft = Initialize_ctrlTouchscreentouch6deltaleft(kAxisLayout, ctrlTouchscreentouch6delta);
// /Touchscreen/touch6/delta/right
var ctrlTouchscreentouch6deltaright = Initialize_ctrlTouchscreentouch6deltaright(kAxisLayout, ctrlTouchscreentouch6delta);
// /Touchscreen/touch6/delta/x
var ctrlTouchscreentouch6deltax = Initialize_ctrlTouchscreentouch6deltax(kAxisLayout, ctrlTouchscreentouch6delta);
// /Touchscreen/touch6/delta/y
var ctrlTouchscreentouch6deltay = Initialize_ctrlTouchscreentouch6deltay(kAxisLayout, ctrlTouchscreentouch6delta);
// /Touchscreen/touch6/radius/x
var ctrlTouchscreentouch6radiusx = Initialize_ctrlTouchscreentouch6radiusx(kAxisLayout, ctrlTouchscreentouch6radius);
// /Touchscreen/touch6/radius/y
var ctrlTouchscreentouch6radiusy = Initialize_ctrlTouchscreentouch6radiusy(kAxisLayout, ctrlTouchscreentouch6radius);
// /Touchscreen/touch6/startPosition/x
var ctrlTouchscreentouch6startPositionx = Initialize_ctrlTouchscreentouch6startPositionx(kAxisLayout, ctrlTouchscreentouch6startPosition);
// /Touchscreen/touch6/startPosition/y
var ctrlTouchscreentouch6startPositiony = Initialize_ctrlTouchscreentouch6startPositiony(kAxisLayout, ctrlTouchscreentouch6startPosition);
// /Touchscreen/touch7/touchId
var ctrlTouchscreentouch7touchId = Initialize_ctrlTouchscreentouch7touchId(kIntegerLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/position
var ctrlTouchscreentouch7position = Initialize_ctrlTouchscreentouch7position(kVector2Layout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/delta
var ctrlTouchscreentouch7delta = Initialize_ctrlTouchscreentouch7delta(kDeltaLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/pressure
var ctrlTouchscreentouch7pressure = Initialize_ctrlTouchscreentouch7pressure(kAxisLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/radius
var ctrlTouchscreentouch7radius = Initialize_ctrlTouchscreentouch7radius(kVector2Layout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/phase
var ctrlTouchscreentouch7phase = Initialize_ctrlTouchscreentouch7phase(kTouchPhaseLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/press
var ctrlTouchscreentouch7press = Initialize_ctrlTouchscreentouch7press(kTouchPressLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/tapCount
var ctrlTouchscreentouch7tapCount = Initialize_ctrlTouchscreentouch7tapCount(kIntegerLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/displayIndex
var ctrlTouchscreentouch7displayIndex = Initialize_ctrlTouchscreentouch7displayIndex(kIntegerLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/indirectTouch
var ctrlTouchscreentouch7indirectTouch = Initialize_ctrlTouchscreentouch7indirectTouch(kButtonLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/tap
var ctrlTouchscreentouch7tap = Initialize_ctrlTouchscreentouch7tap(kButtonLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/startTime
var ctrlTouchscreentouch7startTime = Initialize_ctrlTouchscreentouch7startTime(kDoubleLayout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/startPosition
var ctrlTouchscreentouch7startPosition = Initialize_ctrlTouchscreentouch7startPosition(kVector2Layout, ctrlTouchscreentouch7);
// /Touchscreen/touch7/position/x
var ctrlTouchscreentouch7positionx = Initialize_ctrlTouchscreentouch7positionx(kAxisLayout, ctrlTouchscreentouch7position);
// /Touchscreen/touch7/position/y
var ctrlTouchscreentouch7positiony = Initialize_ctrlTouchscreentouch7positiony(kAxisLayout, ctrlTouchscreentouch7position);
// /Touchscreen/touch7/delta/up
var ctrlTouchscreentouch7deltaup = Initialize_ctrlTouchscreentouch7deltaup(kAxisLayout, ctrlTouchscreentouch7delta);
// /Touchscreen/touch7/delta/down
var ctrlTouchscreentouch7deltadown = Initialize_ctrlTouchscreentouch7deltadown(kAxisLayout, ctrlTouchscreentouch7delta);
// /Touchscreen/touch7/delta/left
var ctrlTouchscreentouch7deltaleft = Initialize_ctrlTouchscreentouch7deltaleft(kAxisLayout, ctrlTouchscreentouch7delta);
// /Touchscreen/touch7/delta/right
var ctrlTouchscreentouch7deltaright = Initialize_ctrlTouchscreentouch7deltaright(kAxisLayout, ctrlTouchscreentouch7delta);
// /Touchscreen/touch7/delta/x
var ctrlTouchscreentouch7deltax = Initialize_ctrlTouchscreentouch7deltax(kAxisLayout, ctrlTouchscreentouch7delta);
// /Touchscreen/touch7/delta/y
var ctrlTouchscreentouch7deltay = Initialize_ctrlTouchscreentouch7deltay(kAxisLayout, ctrlTouchscreentouch7delta);
// /Touchscreen/touch7/radius/x
var ctrlTouchscreentouch7radiusx = Initialize_ctrlTouchscreentouch7radiusx(kAxisLayout, ctrlTouchscreentouch7radius);
// /Touchscreen/touch7/radius/y
var ctrlTouchscreentouch7radiusy = Initialize_ctrlTouchscreentouch7radiusy(kAxisLayout, ctrlTouchscreentouch7radius);
// /Touchscreen/touch7/startPosition/x
var ctrlTouchscreentouch7startPositionx = Initialize_ctrlTouchscreentouch7startPositionx(kAxisLayout, ctrlTouchscreentouch7startPosition);
// /Touchscreen/touch7/startPosition/y
var ctrlTouchscreentouch7startPositiony = Initialize_ctrlTouchscreentouch7startPositiony(kAxisLayout, ctrlTouchscreentouch7startPosition);
// /Touchscreen/touch8/touchId
var ctrlTouchscreentouch8touchId = Initialize_ctrlTouchscreentouch8touchId(kIntegerLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/position
var ctrlTouchscreentouch8position = Initialize_ctrlTouchscreentouch8position(kVector2Layout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/delta
var ctrlTouchscreentouch8delta = Initialize_ctrlTouchscreentouch8delta(kDeltaLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/pressure
var ctrlTouchscreentouch8pressure = Initialize_ctrlTouchscreentouch8pressure(kAxisLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/radius
var ctrlTouchscreentouch8radius = Initialize_ctrlTouchscreentouch8radius(kVector2Layout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/phase
var ctrlTouchscreentouch8phase = Initialize_ctrlTouchscreentouch8phase(kTouchPhaseLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/press
var ctrlTouchscreentouch8press = Initialize_ctrlTouchscreentouch8press(kTouchPressLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/tapCount
var ctrlTouchscreentouch8tapCount = Initialize_ctrlTouchscreentouch8tapCount(kIntegerLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/displayIndex
var ctrlTouchscreentouch8displayIndex = Initialize_ctrlTouchscreentouch8displayIndex(kIntegerLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/indirectTouch
var ctrlTouchscreentouch8indirectTouch = Initialize_ctrlTouchscreentouch8indirectTouch(kButtonLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/tap
var ctrlTouchscreentouch8tap = Initialize_ctrlTouchscreentouch8tap(kButtonLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/startTime
var ctrlTouchscreentouch8startTime = Initialize_ctrlTouchscreentouch8startTime(kDoubleLayout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/startPosition
var ctrlTouchscreentouch8startPosition = Initialize_ctrlTouchscreentouch8startPosition(kVector2Layout, ctrlTouchscreentouch8);
// /Touchscreen/touch8/position/x
var ctrlTouchscreentouch8positionx = Initialize_ctrlTouchscreentouch8positionx(kAxisLayout, ctrlTouchscreentouch8position);
// /Touchscreen/touch8/position/y
var ctrlTouchscreentouch8positiony = Initialize_ctrlTouchscreentouch8positiony(kAxisLayout, ctrlTouchscreentouch8position);
// /Touchscreen/touch8/delta/up
var ctrlTouchscreentouch8deltaup = Initialize_ctrlTouchscreentouch8deltaup(kAxisLayout, ctrlTouchscreentouch8delta);
// /Touchscreen/touch8/delta/down
var ctrlTouchscreentouch8deltadown = Initialize_ctrlTouchscreentouch8deltadown(kAxisLayout, ctrlTouchscreentouch8delta);
// /Touchscreen/touch8/delta/left
var ctrlTouchscreentouch8deltaleft = Initialize_ctrlTouchscreentouch8deltaleft(kAxisLayout, ctrlTouchscreentouch8delta);
// /Touchscreen/touch8/delta/right
var ctrlTouchscreentouch8deltaright = Initialize_ctrlTouchscreentouch8deltaright(kAxisLayout, ctrlTouchscreentouch8delta);
// /Touchscreen/touch8/delta/x
var ctrlTouchscreentouch8deltax = Initialize_ctrlTouchscreentouch8deltax(kAxisLayout, ctrlTouchscreentouch8delta);
// /Touchscreen/touch8/delta/y
var ctrlTouchscreentouch8deltay = Initialize_ctrlTouchscreentouch8deltay(kAxisLayout, ctrlTouchscreentouch8delta);
// /Touchscreen/touch8/radius/x
var ctrlTouchscreentouch8radiusx = Initialize_ctrlTouchscreentouch8radiusx(kAxisLayout, ctrlTouchscreentouch8radius);
// /Touchscreen/touch8/radius/y
var ctrlTouchscreentouch8radiusy = Initialize_ctrlTouchscreentouch8radiusy(kAxisLayout, ctrlTouchscreentouch8radius);
// /Touchscreen/touch8/startPosition/x
var ctrlTouchscreentouch8startPositionx = Initialize_ctrlTouchscreentouch8startPositionx(kAxisLayout, ctrlTouchscreentouch8startPosition);
// /Touchscreen/touch8/startPosition/y
var ctrlTouchscreentouch8startPositiony = Initialize_ctrlTouchscreentouch8startPositiony(kAxisLayout, ctrlTouchscreentouch8startPosition);
// /Touchscreen/touch9/touchId
var ctrlTouchscreentouch9touchId = Initialize_ctrlTouchscreentouch9touchId(kIntegerLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/position
var ctrlTouchscreentouch9position = Initialize_ctrlTouchscreentouch9position(kVector2Layout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/delta
var ctrlTouchscreentouch9delta = Initialize_ctrlTouchscreentouch9delta(kDeltaLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/pressure
var ctrlTouchscreentouch9pressure = Initialize_ctrlTouchscreentouch9pressure(kAxisLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/radius
var ctrlTouchscreentouch9radius = Initialize_ctrlTouchscreentouch9radius(kVector2Layout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/phase
var ctrlTouchscreentouch9phase = Initialize_ctrlTouchscreentouch9phase(kTouchPhaseLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/press
var ctrlTouchscreentouch9press = Initialize_ctrlTouchscreentouch9press(kTouchPressLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/tapCount
var ctrlTouchscreentouch9tapCount = Initialize_ctrlTouchscreentouch9tapCount(kIntegerLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/displayIndex
var ctrlTouchscreentouch9displayIndex = Initialize_ctrlTouchscreentouch9displayIndex(kIntegerLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/indirectTouch
var ctrlTouchscreentouch9indirectTouch = Initialize_ctrlTouchscreentouch9indirectTouch(kButtonLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/tap
var ctrlTouchscreentouch9tap = Initialize_ctrlTouchscreentouch9tap(kButtonLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/startTime
var ctrlTouchscreentouch9startTime = Initialize_ctrlTouchscreentouch9startTime(kDoubleLayout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/startPosition
var ctrlTouchscreentouch9startPosition = Initialize_ctrlTouchscreentouch9startPosition(kVector2Layout, ctrlTouchscreentouch9);
// /Touchscreen/touch9/position/x
var ctrlTouchscreentouch9positionx = Initialize_ctrlTouchscreentouch9positionx(kAxisLayout, ctrlTouchscreentouch9position);
// /Touchscreen/touch9/position/y
var ctrlTouchscreentouch9positiony = Initialize_ctrlTouchscreentouch9positiony(kAxisLayout, ctrlTouchscreentouch9position);
// /Touchscreen/touch9/delta/up
var ctrlTouchscreentouch9deltaup = Initialize_ctrlTouchscreentouch9deltaup(kAxisLayout, ctrlTouchscreentouch9delta);
// /Touchscreen/touch9/delta/down
var ctrlTouchscreentouch9deltadown = Initialize_ctrlTouchscreentouch9deltadown(kAxisLayout, ctrlTouchscreentouch9delta);
// /Touchscreen/touch9/delta/left
var ctrlTouchscreentouch9deltaleft = Initialize_ctrlTouchscreentouch9deltaleft(kAxisLayout, ctrlTouchscreentouch9delta);
// /Touchscreen/touch9/delta/right
var ctrlTouchscreentouch9deltaright = Initialize_ctrlTouchscreentouch9deltaright(kAxisLayout, ctrlTouchscreentouch9delta);
// /Touchscreen/touch9/delta/x
var ctrlTouchscreentouch9deltax = Initialize_ctrlTouchscreentouch9deltax(kAxisLayout, ctrlTouchscreentouch9delta);
// /Touchscreen/touch9/delta/y
var ctrlTouchscreentouch9deltay = Initialize_ctrlTouchscreentouch9deltay(kAxisLayout, ctrlTouchscreentouch9delta);
// /Touchscreen/touch9/radius/x
var ctrlTouchscreentouch9radiusx = Initialize_ctrlTouchscreentouch9radiusx(kAxisLayout, ctrlTouchscreentouch9radius);
// /Touchscreen/touch9/radius/y
var ctrlTouchscreentouch9radiusy = Initialize_ctrlTouchscreentouch9radiusy(kAxisLayout, ctrlTouchscreentouch9radius);
// /Touchscreen/touch9/startPosition/x
var ctrlTouchscreentouch9startPositionx = Initialize_ctrlTouchscreentouch9startPositionx(kAxisLayout, ctrlTouchscreentouch9startPosition);
// /Touchscreen/touch9/startPosition/y
var ctrlTouchscreentouch9startPositiony = Initialize_ctrlTouchscreentouch9startPositiony(kAxisLayout, ctrlTouchscreentouch9startPosition);
// Usages.
builder.WithControlUsage(0, new InternedString("PrimaryAction"), ctrlTouchscreenprimaryTouchtap);
builder.WithControlUsage(1, new InternedString("Point"), ctrlTouchscreenposition);
builder.WithControlUsage(2, new InternedString("Secondary2DMotion"), ctrlTouchscreendelta);
builder.WithControlUsage(3, new InternedString("Pressure"), ctrlTouchscreenpressure);
builder.WithControlUsage(4, new InternedString("Radius"), ctrlTouchscreenradius);
// Control getters/arrays.
this.touchControlArray = new UnityEngine.InputSystem.Controls.TouchControl[10];
this.touchControlArray[0] = ctrlTouchscreentouch0;
this.touchControlArray[1] = ctrlTouchscreentouch1;
this.touchControlArray[2] = ctrlTouchscreentouch2;
this.touchControlArray[3] = ctrlTouchscreentouch3;
this.touchControlArray[4] = ctrlTouchscreentouch4;
this.touchControlArray[5] = ctrlTouchscreentouch5;
this.touchControlArray[6] = ctrlTouchscreentouch6;
this.touchControlArray[7] = ctrlTouchscreentouch7;
this.touchControlArray[8] = ctrlTouchscreentouch8;
this.touchControlArray[9] = ctrlTouchscreentouch9;
this.primaryTouch = ctrlTouchscreenprimaryTouch;
this.position = ctrlTouchscreenposition;
this.delta = ctrlTouchscreendelta;
this.radius = ctrlTouchscreenradius;
this.pressure = ctrlTouchscreenpressure;
this.press = ctrlTouchscreenpress;
this.displayIndex = ctrlTouchscreendisplayIndex;
ctrlTouchscreenprimaryTouch.press = ctrlTouchscreenprimaryTouchpress;
ctrlTouchscreenprimaryTouch.displayIndex = ctrlTouchscreenprimaryTouchdisplayIndex;
ctrlTouchscreenprimaryTouch.touchId = ctrlTouchscreenprimaryTouchtouchId;
ctrlTouchscreenprimaryTouch.position = ctrlTouchscreenprimaryTouchposition;
ctrlTouchscreenprimaryTouch.delta = ctrlTouchscreenprimaryTouchdelta;
ctrlTouchscreenprimaryTouch.pressure = ctrlTouchscreenprimaryTouchpressure;
ctrlTouchscreenprimaryTouch.radius = ctrlTouchscreenprimaryTouchradius;
ctrlTouchscreenprimaryTouch.phase = ctrlTouchscreenprimaryTouchphase;
ctrlTouchscreenprimaryTouch.indirectTouch = ctrlTouchscreenprimaryTouchindirectTouch;
ctrlTouchscreenprimaryTouch.tap = ctrlTouchscreenprimaryTouchtap;
ctrlTouchscreenprimaryTouch.tapCount = ctrlTouchscreenprimaryTouchtapCount;
ctrlTouchscreenprimaryTouch.startTime = ctrlTouchscreenprimaryTouchstartTime;
ctrlTouchscreenprimaryTouch.startPosition = ctrlTouchscreenprimaryTouchstartPosition;
ctrlTouchscreenposition.x = ctrlTouchscreenpositionx;
ctrlTouchscreenposition.y = ctrlTouchscreenpositiony;
ctrlTouchscreendelta.up = ctrlTouchscreendeltaup;
ctrlTouchscreendelta.down = ctrlTouchscreendeltadown;
ctrlTouchscreendelta.left = ctrlTouchscreendeltaleft;
ctrlTouchscreendelta.right = ctrlTouchscreendeltaright;
ctrlTouchscreendelta.x = ctrlTouchscreendeltax;
ctrlTouchscreendelta.y = ctrlTouchscreendeltay;
ctrlTouchscreenradius.x = ctrlTouchscreenradiusx;