Skip to content

Commit 60de94c

Browse files
committed
Fixed omni drive turning bug
1 parent d47cde7 commit 60de94c

File tree

5 files changed

+2
-24
lines changed

5 files changed

+2
-24
lines changed

engine/Assets/Scripts/Behaviors/OmniDriveBehaviour.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public override void Update() {
148148

149149
float moveForward = Mathf.Abs(forwardInput.Value) - Mathf.Abs(backwardInput.Value);
150150
float moveStrafe = Mathf.Abs(rightInput.Value) - Mathf.Abs(leftInput.Value);
151-
float moveTurn = Mathf.Abs(turnLeftInput.Value) - Mathf.Abs(turnRightInput.Value);
151+
float moveTurn = Mathf.Abs(turnRightInput.Value) - Mathf.Abs(turnLeftInput.Value);
152152

153153
moveForward = Diff(moveForward, 0f, 0.1f) ? 0f : moveForward;
154154
moveStrafe = Diff(moveStrafe, 0f, 0.1f) ? 0f : moveStrafe;

engine/ProjectSettings/ProjectSettings.asset

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ PlayerSettings:
135135
vulkanEnableLateAcquireNextImage: 0
136136
vulkanEnableCommandBufferRecycling: 1
137137
loadStoreDebugModeEnabled: 0
138-
bundleVersion: 6.0.0
138+
bundleVersion: 6.1.0
139139
preloadedAssets: []
140140
metroInputSource: 0
141141
wsaTransparentSwapchain: 0
-1.88 KB
Binary file not shown.

installer/OSX-DMG/make-exporter-installer.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

installer/OSX-DMG/make-installer.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
#!/bin/sh
2-
if ! test -f addins-folder-link; then
3-
ln -s ~/Library/Application\ Support/Autodesk/Autodesk\ Fusion\ 360/API/AddIns addins-folder-link
4-
fi
5-
62
test -f Synthesis-Installer.dmg && rm Synthesis-Installer.dmg
73
./create-dmg/create-dmg \
84
--volname "Synthesis Installer" \

0 commit comments

Comments
 (0)