Skip to content

Commit 29d81dc

Browse files
Release v6.1 (Dev) (#953)
2 parents bd19ab1 + 160e6db commit 29d81dc

File tree

8 files changed

+13
-30
lines changed

8 files changed

+13
-30
lines changed

VersionManager.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"Version": "6.0.0",
2+
"Version": "6.1.0",
33
"URL": "https://synthesis.autodesk.com/download.html"
44
}

engine/Assets/Scripts/AutoUpdater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class AutoUpdater : MonoBehaviour {
1515
public static bool UpdateAvailable { get; private set; } = false;
1616
public static string UpdaterLink { get; private set; }
1717

18-
public const string LocalVersion = "6.0.0.0"; // must be a version value
18+
public const string LocalVersion = "6.1.0.0"; // must be a version value
1919

2020
private void Start() {
2121
if (CheckConnection()) {

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

exporter/SynthesisFusionAddin/src/Parser/SynthesisParser/Materials.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,16 @@ def getMaterialAppearance(
210210

211211
if matModelType == 0:
212212
baseColor = properties.itemById("opaque_albedo").value
213-
baseColor.opacity = 255
213+
if baseColor:
214+
baseColor.opacity = 255
214215
elif matModelType == 1:
215216
baseColor = properties.itemById("metal_f0").value
216-
baseColor.opacity = 255
217+
if baseColor:
218+
baseColor.opacity = 255
217219
elif matModelType == 2:
218220
baseColor = properties.itemById("layered_diffuse").value
219-
baseColor.opacity = 255
221+
if baseColor:
222+
baseColor.opacity = 255
220223
elif matModelType == 3:
221224
baseColor = properties.itemById("transparent_color").value
222225
transparent_distance = properties.itemById("transparent_distance").value
@@ -228,7 +231,9 @@ def getMaterialAppearance(
228231
opac = 255
229232
elif opac < 0:
230233
opac = 0
231-
baseColor.opacity = int(round(opac))
234+
235+
if baseColor:
236+
baseColor.opacity = int(round(opac))
232237

233238
if baseColor:
234239
color.R = baseColor.red
-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)