File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -26,15 +26,20 @@ message BinlogRecord {
26
26
// Used to indicate the desired motion in each direction.
27
27
// Typically these values map to the left and right joystick for motion,
28
28
// and the left and right trigger for the slow and boost modifiers.
29
+ //
30
+ // You can use the slow and boost modifiers to increase or decrease the speed
31
+ // of the motion, from the default baseline.
32
+
33
+ // If you use both values at the same time they cancel each other out.
29
34
message MotionInput {
30
35
float surge = 1 ; // Forward (positive) and backwards (negative) movement. (-1..1)
31
36
float sway = 2 ; // Right (positive) and left (negative) lateral movement (-1..1)
32
37
float heave = 3 ; // Descend (positive) and ascend (negative) movement (-1..1)
33
38
float roll = 7 ; // Roll left (negative) or right (positive). (-1..1)
34
39
float pitch = 8 ; // Pitch down (negative) or up (positive). (-1..1)
35
40
float yaw = 4 ; // Left (positive) and right (negative) movement (-1..1)
36
- float slow = 5 ; // Multiplier used to reduce the speed of the motion (0..1)
37
- float boost = 6 ; // Multiplier used to increase the speed of the motion (0..1)
41
+ float slow = 5 ; // Modifier used to reduce the speed of the motion (0..1)
42
+ float boost = 6 ; // Modifier used to increase the speed of the motion (0..1)
38
43
}
39
44
40
45
// Lights message used to represent the intensity of the main light or external lights.
You can’t perform that action at this time.
0 commit comments