-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathSteamVRTrackersSettingT.java
More file actions
94 lines (62 loc) · 2.71 KB
/
SteamVRTrackersSettingT.java
File metadata and controls
94 lines (62 loc) · 2.71 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
// automatically generated by the FlatBuffers compiler, do not modify
package solarxr_protocol.rpc;
import java.nio.*;
import java.lang.*;
import java.util.*;
import com.google.flatbuffers.*;
public class SteamVRTrackersSettingT {
private boolean waist;
private boolean chest;
private boolean automaticTrackerToggle;
private boolean leftFoot;
private boolean rightFoot;
private boolean leftKnee;
private boolean rightKnee;
private boolean leftElbow;
private boolean rightElbow;
private boolean leftHand;
private boolean rightHand;
private boolean leftToes;
private boolean rightToes;
public boolean getWaist() { return waist; }
public void setWaist(boolean waist) { this.waist = waist; }
public boolean getChest() { return chest; }
public void setChest(boolean chest) { this.chest = chest; }
public boolean getAutomaticTrackerToggle() { return automaticTrackerToggle; }
public void setAutomaticTrackerToggle(boolean automaticTrackerToggle) { this.automaticTrackerToggle = automaticTrackerToggle; }
public boolean getLeftFoot() { return leftFoot; }
public void setLeftFoot(boolean leftFoot) { this.leftFoot = leftFoot; }
public boolean getRightFoot() { return rightFoot; }
public void setRightFoot(boolean rightFoot) { this.rightFoot = rightFoot; }
public boolean getLeftKnee() { return leftKnee; }
public void setLeftKnee(boolean leftKnee) { this.leftKnee = leftKnee; }
public boolean getRightKnee() { return rightKnee; }
public void setRightKnee(boolean rightKnee) { this.rightKnee = rightKnee; }
public boolean getLeftElbow() { return leftElbow; }
public void setLeftElbow(boolean leftElbow) { this.leftElbow = leftElbow; }
public boolean getRightElbow() { return rightElbow; }
public void setRightElbow(boolean rightElbow) { this.rightElbow = rightElbow; }
public boolean getLeftHand() { return leftHand; }
public void setLeftHand(boolean leftHand) { this.leftHand = leftHand; }
public boolean getRightHand() { return rightHand; }
public void setRightHand(boolean rightHand) { this.rightHand = rightHand; }
public boolean getLeftToes() { return leftToes; }
public void setLeftToes(boolean leftToes) { this.leftToes = leftToes; }
public boolean getRightToes() { return rightToes; }
public void setRightToes(boolean rightToes) { this.rightToes = rightToes; }
public SteamVRTrackersSettingT() {
this.waist = false;
this.chest = false;
this.automaticTrackerToggle = false;
this.leftFoot = false;
this.rightFoot = false;
this.leftKnee = false;
this.rightKnee = false;
this.leftElbow = false;
this.rightElbow = false;
this.leftHand = false;
this.rightHand = false;
this.leftToes = false;
this.rightToes = false;
}
}