-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGameControllerInputs.cs
More file actions
1176 lines (1077 loc) · 39.9 KB
/
Copy pathGameControllerInputs.cs
File metadata and controls
1176 lines (1077 loc) · 39.9 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
using UnityEngine;
using System.Collections;
public class GameControllerInputs : MonoBehaviour {
//Variables
/*
Below, you can find a list of all inputs available:
> ANALOG (returns a float):
LeftDirectional_Horizontal (returns: 0 to -1 <left>; 0 to 1 <right>)
LeftDirectional_Vertical (returns: 0 to -1 <up>; 0 to 1 <down>)
RightDirectional_Horizontal (returns: 0 to -1 <left>; 0 to 1 <right>)
RightDirectional_Vertical (returns: 0 to -1 <up>; 0 to 1 <down>)
BothTriggers (returns: -1 to 1 <depends on the combination of both triggers>)
LeftTrigger (returns: 0 to 1)
RightTrigger (returns: 0 to 1)
> DIGITAL (returns a boolean - true when pressed):
LeftDirectional_asLeftButton
LeftDirectional_asRightButton
LeftDirectional_asUpButton
LeftDirectional_asDownButton
RightDirectional_asLeftButton
RightDirectional_asRightButton
RightDirectional_asUpButton
RightDirectional_asDownButton
LeftTrigger_asButton
RightTrigger_asButton
DPad_Left
DPad_Right
DPad_Up
DPad_Down
A_button_hold
A_button_down
A_button_up
B_button_hold
B_button_down
B_button_up
X_button_hold
X_button_down
X_button_up
Y_button_hold
Y_button_down
Y_button_up
LB_hold
LB_down
LB_up
RB_hold
RB_down
RB_up
LeftDir_press_hold
LeftDir_press_down
LeftDir_press_up
RightDir_press_hold
RightDir_press_down
RightDir_press_up
Start_hold
Start_down
Start_up
Back_hold
Back_down
Back_up
*/
private float inputZeroThreshold = 0.05f; //Filters small value fluctuations when the analog inputs are released.
private float inputDigitalThreshold = 0.25f; //Minimum value that an analog input can be considered active when used as a digital button.
public bool IsInputActive { get; private set; } //True when any input is active.
public bool IsInputActive2 { get; private set; } //True when any input is active.
#region Left and Right Directionals
private float leftDirectional_Horizontal = 0f;
/// <summary>
/// Returns an analog value from -1 (Left Directional completely to the LEFT) to 1 (Left Directional completely to the RIGHT), returning 0 when in the middle.
/// </summary>
public float LeftDirectional_Horizontal
{
get
{
if (Mathf.Abs(leftDirectional_Horizontal) >= inputZeroThreshold)
return leftDirectional_Horizontal;
else
return 0f;
}
}
private bool leftDirectional_asLeftButton;
/// <summary>
/// Returns TRUE while Left Directional is moved to the LEFT (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftDirectional_asLeftButton
{
get
{
if (leftDirectional_Horizontal <= -inputDigitalThreshold)
return true;
else
return false;
}
}
private bool leftDirectional_asRightButton;
/// <summary>
/// Returns TRUE while Left Directional is moved to the RIGHT (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftDirectional_asRightButton
{
get
{
if (leftDirectional_Horizontal >= inputDigitalThreshold)
return true;
else
return false;
}
}
private float leftDirectional_Vertical = 0f;
/// <summary>
/// Returns an analog value from -1 (Left Directional completely to the TOP) to 1 (Left Directional completely to the BOTTOM), returning 0 when in the middle.
/// </summary>
public float LeftDirectional_Vertical
{
get
{
if (Mathf.Abs(leftDirectional_Vertical) >= inputZeroThreshold)
return leftDirectional_Vertical;
else
return 0f;
}
}
private bool leftDirectional_asUpButton;
/// <summary>
/// Returns TRUE while Left Directional is moved to the TOP (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftDirectional_asUpButton
{
get
{
if (leftDirectional_Vertical <= -inputDigitalThreshold)
return true;
else
return false;
}
}
private bool leftDirectional_asDownButton;
/// <summary>
/// Returns TRUE while Left Directional is moved to the BOTTOM (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftDirectional_asDownButton
{
get
{
if (leftDirectional_Vertical >= inputDigitalThreshold)
return true;
else
return false;
}
}
private float rightDirectional_Horizontal = 0f;
/// <summary>
/// Returns an analog value from -1 (Right Directional completely to the LEFT) to 1 (Rightt Directional completely to the RIGHT), returning 0 when in the middle.
/// </summary>
public float RightDirectional_Horizontal
{
get
{
if (Mathf.Abs(rightDirectional_Horizontal) >= inputZeroThreshold)
return rightDirectional_Horizontal;
else
return 0f;
}
}
private bool rightDirectional_asLeftButton;
/// <summary>
/// Returns TRUE while Right Directional is moved to the LEFT (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightDirectional_asLeftButton
{
get
{
if (rightDirectional_Horizontal <= -inputDigitalThreshold)
return true;
else
return false;
}
}
private bool rightDirectional_asRightButton;
/// <summary>
/// Returns TRUE while Right Directional is moved to the RIGHT (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightDirectional_asRightButton
{
get
{
if (rightDirectional_Horizontal >= inputDigitalThreshold)
return true;
else
return false;
}
}
private float rightDirectional_Vertical = 0f;
/// <summary>
/// Returns an analog value from -1 (Right Directional completely to the TOP) to 1 (Right Directional completely to the BOTTOM), returning 0 when in the middle.
/// </summary>
public float RightDirectional_Vertical
{
get
{
if (Mathf.Abs(rightDirectional_Vertical) >= inputZeroThreshold)
return rightDirectional_Vertical;
else
return 0f;
}
}
private bool rightDirectional_asUpButton;
/// <summary>
/// Returns TRUE while Right Directional is moved to the TOP (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightDirectional_asUpButton
{
get
{
if (rightDirectional_Vertical <= -inputDigitalThreshold)
return true;
else
return false;
}
}
private bool rightDirectional_asDownButton;
/// <summary>
/// Returns TRUE while Right Directional is moved to the BOTTOM (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightDirectional_asDownButton
{
get
{
if (rightDirectional_Vertical >= inputDigitalThreshold)
return true;
else
return false;
}
}
#endregion
#region Left and Right Directionals2
private float leftDirectional_Horizontal2 = 0f;
/// <summary>
/// Returns an analog value from -1 (Left Directional completely to the LEFT) to 1 (Left Directional completely to the RIGHT), returning 0 when in the middle.
/// </summary>
public float LeftDirectional_Horizontal2
{
get
{
if (Mathf.Abs(leftDirectional_Horizontal2) >= inputZeroThreshold)
return leftDirectional_Horizontal2;
else
return 0f;
}
}
private bool leftDirectional_asLeftButton2;
/// <summary>
/// Returns TRUE while Left Directional is moved to the LEFT (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftDirectional_asLeftButton2
{
get
{
if (leftDirectional_Horizontal2 <= -inputDigitalThreshold)
return true;
else
return false;
}
}
private bool leftDirectional_asRightButton2;
/// <summary>
/// Returns TRUE while Left Directional is moved to the RIGHT (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftDirectional_asRightButton2
{
get
{
if (leftDirectional_Horizontal2 >= inputDigitalThreshold)
return true;
else
return false;
}
}
private float leftDirectional_Vertical2 = 0f;
/// <summary>
/// Returns an analog value from -1 (Left Directional completely to the TOP) to 1 (Left Directional completely to the BOTTOM), returning 0 when in the middle.
/// </summary>
public float LeftDirectional_Vertical2
{
get
{
if (Mathf.Abs(leftDirectional_Vertical2) >= inputZeroThreshold)
return leftDirectional_Vertical2;
else
return 0f;
}
}
private bool leftDirectional_asUpButton2;
/// <summary>
/// Returns TRUE while Left Directional is moved to the TOP (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftDirectional_asUpButton2
{
get
{
if (leftDirectional_Vertical2 <= -inputDigitalThreshold)
return true;
else
return false;
}
}
private bool leftDirectional_asDownButton2;
/// <summary>
/// Returns TRUE while Left Directional is moved to the BOTTOM (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftDirectional_asDownButton2
{
get
{
if (leftDirectional_Vertical2 >= inputDigitalThreshold)
return true;
else
return false;
}
}
private float rightDirectional_Horizontal2 = 0f;
/// <summary>
/// Returns an analog value from -1 (Right Directional completely to the LEFT) to 1 (Rightt Directional completely to the RIGHT), returning 0 when in the middle.
/// </summary>
public float RightDirectional_Horizontal2
{
get
{
if (Mathf.Abs(rightDirectional_Horizontal2) >= inputZeroThreshold)
return rightDirectional_Horizontal2;
else
return 0f;
}
}
private bool rightDirectional_asLeftButton2;
/// <summary>
/// Returns TRUE while Right Directional is moved to the LEFT (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightDirectional_asLeftButton2
{
get
{
if (rightDirectional_Horizontal2 <= -inputDigitalThreshold)
return true;
else
return false;
}
}
private bool rightDirectional_asRightButton2;
/// <summary>
/// Returns TRUE while Right Directional is moved to the RIGHT (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightDirectional_asRightButton2
{
get
{
if (rightDirectional_Horizontal2 >= inputDigitalThreshold)
return true;
else
return false;
}
}
private float rightDirectional_Vertical2 = 0f;
/// <summary>
/// Returns an analog value from -1 (Right Directional completely to the TOP) to 1 (Right Directional completely to the BOTTOM), returning 0 when in the middle.
/// </summary>
public float RightDirectional_Vertical2
{
get
{
if (Mathf.Abs(rightDirectional_Vertical2) >= inputZeroThreshold)
return rightDirectional_Vertical2;
else
return 0f;
}
}
private bool rightDirectional_asUpButton2;
/// <summary>
/// Returns TRUE while Right Directional is moved to the TOP (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightDirectional_asUpButton2
{
get
{
if (rightDirectional_Vertical2 <= -inputDigitalThreshold)
return true;
else
return false;
}
}
private bool rightDirectional_asDownButton2;
/// <summary>
/// Returns TRUE while Right Directional is moved to the BOTTOM (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightDirectional_asDownButton2
{
get
{
if (rightDirectional_Vertical2 >= inputDigitalThreshold)
return true;
else
return false;
}
}
#endregion
#region Triggers
private float bothTriggers = 0f;
/// <summary>
/// Returns an analog value from -1 to 1 that is a combination from the Left Trigger (0 to 1) and the Right Trigger (0 to -1). It returns 0 if both triggers are released (0 + 0) or fully pressed (-1 + 1).
/// </summary>
public float BothTriggers
{
get
{
if (bothTriggers >= inputZeroThreshold)
return bothTriggers;
else
return 0f;
}
}
private float leftTrigger = 0f;
/// <summary>
/// Returns an analog value from 0 (Trigger released) to 1 (Trigger fully pressed).
/// </summary>
public float LeftTrigger
{
get
{
if (leftTrigger >= inputZeroThreshold)
return leftTrigger;
else
return 0f;
}
}
private float rightTrigger = 0f;
/// <summary>
/// Returns an analog value from 0 (Trigger released) to 1 (Trigger fully pressed).
/// </summary>
public float RightTrigger
{
get
{
if (Mathf.Abs(rightTrigger) >= inputZeroThreshold)
return rightTrigger;
else
return 0f;
}
}
private bool leftTrigger_asButton;
/// <summary>
/// Returns TRUE while the Left Trigger is being pressed (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftTrigger_asButton
{
get
{
if (leftTrigger >= inputDigitalThreshold)
return true;
else
return false;
}
}
private bool rightTrigger_asButton;
/// <summary>
/// Returns TRUE while the Right Trigger is being pressed (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightTrigger_asButton
{
get
{
if (rightTrigger >= inputDigitalThreshold)
return true;
else
return false;
}
}
#endregion
#region Triggers2
private float bothTriggers2 = 0f;
/// <summary>
/// Returns an analog value from -1 to 1 that is a combination from the Left Trigger (0 to 1) and the Right Trigger (0 to -1). It returns 0 if both triggers are released (0 + 0) or fully pressed (-1 + 1).
/// </summary>
public float BothTriggers2
{
get
{
if (bothTriggers2 >= inputZeroThreshold)
return bothTriggers2;
else
return 0f;
}
}
private float leftTrigger2 = 0f;
/// <summary>
/// Returns an analog value from 0 (Trigger released) to 1 (Trigger fully pressed).
/// </summary>
public float LeftTrigger2
{
get
{
if (leftTrigger2 >= inputZeroThreshold)
return leftTrigger2;
else
return 0f;
}
}
private float rightTrigger2 = 0f;
/// <summary>
/// Returns an analog value from 0 (Trigger released) to 1 (Trigger fully pressed).
/// </summary>
public float RightTrigger2
{
get
{
if (Mathf.Abs(rightTrigger2) >= inputZeroThreshold)
return rightTrigger2;
else
return 0f;
}
}
private bool leftTrigger_asButton2;
/// <summary>
/// Returns TRUE while the Left Trigger is being pressed (past the threshold). Returns FALSE while released.
/// </summary>
public bool LeftTrigger_asButton2
{
get
{
if (leftTrigger2 >= inputDigitalThreshold)
return true;
else
return false;
}
}
private bool rightTrigger_asButton2;
/// <summary>
/// Returns TRUE while the Right Trigger is being pressed (past the threshold). Returns FALSE while released.
/// </summary>
public bool RightTrigger_asButton2
{
get
{
if (rightTrigger2 >= inputDigitalThreshold)
return true;
else
return false;
}
}
#endregion
#region DPADs
private float dPad_Horizontal;
/// <summary>
/// Returns TRUE while the DPad's Left direction is being pressed. Returns FALSE while released.
/// </summary>
public bool DPad_Left
{
get
{
if (dPad_Horizontal < -inputDigitalThreshold)
return true;
else
return false;
}
}
/// <summary>
/// Returns TRUE while the DPad's Right direction is being pressed. Returns FALSE while released.
/// </summary>
public bool DPad_Right
{
get
{
if (dPad_Horizontal > inputDigitalThreshold)
return true;
else
return false;
}
}
private float dPad_Vertical;
/// <summary>
/// Returns TRUE while the DPad's Up direction is being pressed. Returns FALSE while released.
/// </summary>
public bool DPad_Up
{
get
{
if (dPad_Vertical > inputDigitalThreshold)
return true;
else
return false;
}
}
/// <summary>
/// Returns TRUE while the DPad's Down direction is being pressed. Returns FALSE while released.
/// </summary>
public bool DPad_Down
{
get
{
if (dPad_Vertical < -inputDigitalThreshold)
return true;
else
return false;
}
}
#endregion
#region DPADs2
private float dPad_Horizontal2;
/// <summary>
/// Returns TRUE while the DPad's Left direction is being pressed. Returns FALSE while released.
/// </summary>
public bool DPad_Left2
{
get
{
if (dPad_Horizontal2 < -inputDigitalThreshold)
return true;
else
return false;
}
}
/// <summary>
/// Returns TRUE while the DPad's Right direction is being pressed. Returns FALSE while released.
/// </summary>
public bool DPad_Right2
{
get
{
if (dPad_Horizontal2 > inputDigitalThreshold)
return true;
else
return false;
}
}
private float dPad_Vertical2;
/// <summary>
/// Returns TRUE while the DPad's Up direction is being pressed. Returns FALSE while released.
/// </summary>
public bool DPad_Up2
{
get
{
if (dPad_Vertical2 > inputDigitalThreshold)
return true;
else
return false;
}
}
/// <summary>
/// Returns TRUE while the DPad's Down direction is being pressed. Returns FALSE while released.
/// </summary>
public bool DPad_Down2
{
get
{
if (dPad_Vertical2 < -inputDigitalThreshold)
return true;
else
return false;
}
}
#endregion
#region Buttons ABXY
/// <summary>
/// Returns TRUE while the A button is being pressed. Returns FALSE while released.
/// </summary>
public bool A_button_hold { get; private set; }
/// <summary>
/// Returns TRUE while the B button is being pressed. Returns FALSE while released.
/// </summary>
public bool B_button_hold { get; private set; }
/// <summary>
/// Returns TRUE while the X button is being pressed. Returns FALSE while released.
/// </summary>
public bool X_button_hold { get; private set; }
/// <summary>
/// Returns TRUE while the Y button is being pressed. Returns FALSE while released.
/// </summary>
public bool Y_button_hold { get; private set; }
/// <summary>
/// Returns TRUE during the frame the A button was pressed.
/// </summary>
public bool A_button_down { get; private set; }
/// <summary>
/// Returns TRUE during the frame the B button was pressed.
/// </summary>
public bool B_button_down { get; private set; }
/// <summary>
/// Returns TRUE during the frame the X button was pressed.
/// </summary>
public bool X_button_down { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Y button was pressed.
/// </summary>
public bool Y_button_down { get; private set; }
/// <summary>
/// Returns TRUE the first frame the A button was released.
/// </summary>
public bool A_button_up { get; private set; }
/// <summary>
/// Returns TRUE the first frame the B button was released.
/// </summary>
public bool B_button_up { get; private set; }
/// <summary>
/// Returns TRUE the first frame the X button was released.
/// </summary>
public bool X_button_up { get; private set; }
/// <summary>
/// Returns TRUE the first framer the Y button was released.
/// </summary>
public bool Y_button_up { get; private set; }
#endregion
#region Buttons ABXY2
/// <summary>
/// Returns TRUE while the A button is being pressed. Returns FALSE while released.
/// </summary>
public bool A_button_hold2 { get; private set; }
/// <summary>
/// Returns TRUE while the B button is being pressed. Returns FALSE while released.
/// </summary>
public bool B_button_hold2 { get; private set; }
/// <summary>
/// Returns TRUE while the X button is being pressed. Returns FALSE while released.
/// </summary>
public bool X_button_hold2 { get; private set; }
/// <summary>
/// Returns TRUE while the Y button is being pressed. Returns FALSE while released.
/// </summary>
public bool Y_button_hold2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the A button was pressed.
/// </summary>
public bool A_button_down2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the B button was pressed.
/// </summary>
public bool B_button_down2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the X button was pressed.
/// </summary>
public bool X_button_down2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Y button was pressed.
/// </summary>
public bool Y_button_down2 { get; private set; }
/// <summary>
/// Returns TRUE the first frame the A button was released.
/// </summary>
public bool A_button_up2 { get; private set; }
/// <summary>
/// Returns TRUE the first frame the B button was released.
/// </summary>
public bool B_button_up2 { get; private set; }
/// <summary>
/// Returns TRUE the first frame the X button was released.
/// </summary>
public bool X_button_up2 { get; private set; }
/// <summary>
/// Returns TRUE the first framer the Y button was released.
/// </summary>
public bool Y_button_up2 { get; private set; }
#endregion
#region Bumbers
/// <summary>
/// Returns TRUE while the Left Bumper is being pressed. Returns FALSE while released.
/// </summary>
public bool LB_hold { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Left Bumper was pressed.
/// </summary>
public bool LB_down { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Left Bumper was released.
/// </summary>
public bool LB_up { get; private set; }
/// <summary>
/// Returns TRUE while the Right Bumper is being pressed. Returns FALSE while released.
/// </summary>
public bool RB_hold { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Left Bumper was pressed.
/// </summary>
public bool RB_down { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Right Bumper was released.
/// </summary>
public bool RB_up { get; private set; }
#endregion
#region Bumbers2
/// <summary>
/// Returns TRUE while the Left Bumper is being pressed. Returns FALSE while released.
/// </summary>
public bool LB_hold2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Left Bumper was pressed.
/// </summary>
public bool LB_down2 { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Left Bumper was released.
/// </summary>
public bool LB_up2 { get; private set; }
/// <summary>
/// Returns TRUE while the Right Bumper is being pressed. Returns FALSE while released.
/// </summary>
public bool RB_hold2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Left Bumper was pressed.
/// </summary>
public bool RB_down2 { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Right Bumper was released.
/// </summary>
public bool RB_up2 { get; private set; }
#endregion
#region Directional Press
/// <summary>
/// Returns TRUE while the Left Directional is being pressed down (click). Returns FALSE while released.
/// </summary>
public bool LeftDir_press_hold { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Left Directional was pressed down (click).
/// </summary>
public bool LeftDir_press_down { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Left Directional press (click) is released (click).
/// </summary>
public bool LeftDir_press_up { get; private set; }
/// <summary>
/// Returns TRUE while the Right Directional is being pressed down (click). Returns FALSE while released.
/// </summary>
public bool RightDir_press_hold { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Right Directional was pressed down (click).
/// </summary>
public bool RightDir_press_down { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Right Directional press (click) is released (click).
/// </summary>
public bool RightDir_press_up { get; private set; }
#endregion
#region Directional Press2
/// <summary>
/// Returns TRUE while the Left Directional is being pressed down (click). Returns FALSE while released.
/// </summary>
public bool LeftDir_press_hold2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Left Directional was pressed down (click).
/// </summary>
public bool LeftDir_press_down2 { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Left Directional press (click) is released (click).
/// </summary>
public bool LeftDir_press_up2 { get; private set; }
/// <summary>
/// Returns TRUE while the Right Directional is being pressed down (click). Returns FALSE while released.
/// </summary>
public bool RightDir_press_hold2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Right Directional was pressed down (click).
/// </summary>
public bool RightDir_press_down2 { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Right Directional press (click) is released (click).
/// </summary>
public bool RightDir_press_up2 { get; private set; }
#endregion
#region Start and Back Buttons
/// <summary>
/// Returns TRUE while the Start button is being pressed. Returns FALSE while released.
/// </summary>
public bool Start_hold { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Start button was pressed down.
/// </summary>
public bool Start_down { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Start button press is released.
/// </summary>
public bool Start_up { get; private set; }
/// <summary>
/// Returns TRUE while the Back button is being pressed. Returns FALSE while released.
/// </summary>
public bool Back_hold { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Back button was pressed down.
/// </summary>
public bool Back_down { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Back button press is released.
/// </summary>
public bool Back_up { get; private set; }
#endregion
#region Start and Back Buttons2
/// <summary>
/// Returns TRUE while the Start button is being pressed. Returns FALSE while released.
/// </summary>
public bool Start_hold2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Start button was pressed down.
/// </summary>
public bool Start_down2 { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Start button press is released.
/// </summary>
public bool Start_up2 { get; private set; }
/// <summary>
/// Returns TRUE while the Back button is being pressed. Returns FALSE while released.
/// </summary>
public bool Back_hold2 { get; private set; }
/// <summary>
/// Returns TRUE during the frame the Back button was pressed down.
/// </summary>
public bool Back_down2 { get; private set; }
/// <summary>
/// Returns TRUE the first frame the Back button press is released.
/// </summary>
public bool Back_up2 { get; private set; }
#endregion
// Keep object alive in every scene
void Awake()
{
DontDestroyOnLoad(transform.gameObject);
}
// Check for controller inputs
void Update()
{