We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31a7ff6 commit 05f74e5Copy full SHA for 05f74e5
src/Game/Logic/debugFreeControls.js
@@ -47,8 +47,8 @@ export default (
47
move[2] -= 0.06 * threshold(axes[1], 0.2);
48
}
49
if (axes.length >= 4) {
50
- g.rotY += 0.02 * threshold(axes[2], 0.2);
51
- g.rotX += 0.02 * threshold(axes[3], 0.2);
+ g.rotY += 0.04 * threshold(axes[2], 0.2);
+ g.rotX += 0.03 * threshold(axes[3], 0.2);
52
53
if (buttons.length > 7) {
54
move[1] += 0.05 * (buttons[7].value - buttons[6].value);
src/Game/Logic/tick.js
@@ -162,7 +162,7 @@ export default (
162
? g.switchDirectionTarget
163
: -g.switchDirectionTarget;
164
} else {
165
- if (g.tick % 60 === 0) {
+ if (g.tick % 120 === 0) {
166
g.switchDirectionTarget = Math.random() < 0.5 ? -1 : 1;
167
168
0 commit comments