Skip to content

Commit 42c572e

Browse files
Cinq sprint (#942)
2 parents 56d696c + 12c31c3 commit 42c572e

File tree

7 files changed

+34
-213
lines changed

7 files changed

+34
-213
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": "5.1.0",
2+
"Version": "6.0.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 = "5.1.0.0"; // must be a version value
18+
public const string LocalVersion = "6.0.0.0"; // must be a version value
1919

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

engine/Assets/Scripts/Drivers/LinearDriver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public override void Update() {
9595
if (Mathf.Abs(_lastVel * Time.deltaTime) > _motor.targetVelocity)
9696
_lastVel = _motor.targetVelocity * Mathf.Sign(_lastVel);
9797

98-
Position += _lastVel;
98+
Position += _lastVel * Time.deltaTime;
9999
}
100100
}
101101
}

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: 5.1.0
138+
bundleVersion: 6.0.0
139139
preloadedAssets: []
140140
metroInputSource: 0
141141
wsaTransparentSwapchain: 0

installer/Windows/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
Robots/
22
Fields/
3+
Exporter/
4+
Themes/
5+
MixAndMatch/
36
Synthesis/
47

8+
Robots.zip
9+
Fields.zip
10+
Themes.zip
11+
MixAndMatch.zip

installer/Windows/EngInstaller(x86).nsi

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

installer/Windows/MainInstaller.nsi

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
!include MUI2.nsh
22
!include x64.nsh
3-
!define PRODUCT_VERSION "6.0.0b"
3+
!define PRODUCT_VERSION "6.0.0"
44

55
Name "Synthesis"
66

@@ -160,10 +160,6 @@ Section "Synthesis (required)" Synthesis
160160
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Synthesis" "NoModify" 1
161161
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Synthesis" "NoRepair" 1
162162
WriteUninstaller "uninstall.exe"
163-
164-
; Set extraction path for field files
165-
SetOutPath $APPDATA\Autodesk\Synthesis\Fields
166-
File /r "Fields\*"
167163

168164
SectionEnd
169165

@@ -184,7 +180,8 @@ Section "Fusion Exporter Plugin" fExporter
184180

185181
; Set extraction path to Fusion plugin directories
186182
SetOutPath "$APPDATA\Autodesk\Autodesk Fusion 360\API\AddIns\Synthesis"
187-
File /r "..\..\exporter\SynthesisFusionAddin\*"
183+
File /r "Exporter\*"
184+
; File /r "..\..\exporter\SynthesisFusionAddin\*"
188185

189186
; SetOutPath "$APPDATA\Autodesk\ApplicationPlugins\FusionRobotExporter.bundle\Contents\"
190187
; File /r "FusionExporter\FusionRobotExporter.dll"
@@ -202,6 +199,22 @@ Section "Robots and Fields" RobotFiles
202199

203200
SectionEnd
204201

202+
Section "PartBuilder Samples" PartBuilder
203+
204+
; Set extraction path for preloaded robot files
205+
SetOutPath $APPDATA\Autodesk\Synthesis\MixAndMatch
206+
File /r "MixAndMatch\*"
207+
208+
SectionEnd
209+
210+
Section "Themes" Themes
211+
212+
; Set extraction path for preloaded robot files
213+
SetOutPath $APPDATA\Autodesk\Synthesis\Themes
214+
File /r "Themes\*"
215+
216+
SectionEnd
217+
205218
/*
206219
Section "Code Emulator" Emulator
207220
@@ -229,13 +242,17 @@ SectionEnd
229242
; LangString DESC_iExporter ${LANG_ENGLISH} "The Inventor Exporter Plugin is an Inventor addin used to export Autodesk Inventor Assemblies directly into the simulator"
230243
LangString DESC_fExporter ${LANG_ENGLISH} "The Fusion360 Exporter Plugin is a Fusion addin used to export Autodesk Fusion Assemblies directly into the simulator"
231244
LangString DESC_RobotFiles ${LANG_ENGLISH} "A library of sample robots and fields pre-loaded into the simulator"
245+
LangString DESC_PartBuilder ${LANG_ENGLISH} "A library of sample parts to use in Robot Builder"
246+
LangString DESC_Themes ${LANG_ENGLISH} "Preinstalled themes"
232247
; LangString DESC_Emulator ${LANG_ENGLISH} "The Robot Code Emulator allows you to emulate your C++ & JAVA robot code in the simulator"
233248

234249
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
235250
!insertmacro MUI_DESCRIPTION_TEXT ${Synthesis} $(DESC_Synthesis)
236251
; !insertmacro MUI_DESCRIPTION_TEXT ${iExporter} $(DESC_iExporter)
237252
!insertmacro MUI_DESCRIPTION_TEXT ${fExporter} $(DESC_fExporter)
238253
!insertmacro MUI_DESCRIPTION_TEXT ${RobotFiles} $(DESC_RobotFiles)
254+
!insertmacro MUI_DESCRIPTION_TEXT ${PartBuilder} $(DESC_PartBuilder)
255+
!insertmacro MUI_DESCRIPTION_TEXT ${Themes} $(DESC_Themes)
239256
; !insertmacro MUI_DESCRIPTION_TEXT ${Emulator} $(DESC_Emulator)
240257
!insertmacro MUI_FUNCTION_DESCRIPTION_END
241258

0 commit comments

Comments
 (0)