From 3c0ab7c37dc0438cd67318f19af2ccc5f15b8e54 Mon Sep 17 00:00:00 2001 From: Bryan Wong Date: Tue, 1 Sep 2020 11:21:10 +0100 Subject: [PATCH 1/4] enable burst --- workers/unity/ProjectSettings/BurstAotSettings_Android.json | 2 +- .../unity/ProjectSettings/BurstAotSettings_StandaloneLinux.json | 2 +- .../ProjectSettings/BurstAotSettings_StandaloneLinux64.json | 2 +- .../unity/ProjectSettings/BurstAotSettings_StandaloneOSX.json | 2 +- .../ProjectSettings/BurstAotSettings_StandaloneWindows.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/workers/unity/ProjectSettings/BurstAotSettings_Android.json b/workers/unity/ProjectSettings/BurstAotSettings_Android.json index 5a8683dcf..ec0089d85 100644 --- a/workers/unity/ProjectSettings/BurstAotSettings_Android.json +++ b/workers/unity/ProjectSettings/BurstAotSettings_Android.json @@ -6,6 +6,6 @@ "m_EditorClassIdentifier": "Unity.Burst.Editor:Unity.Burst.Editor:BurstPlatformAotSettings", "DisableOptimisations": false, "DisableSafetyChecks": true, - "DisableBurstCompilation": true + "DisableBurstCompilation": false } } \ No newline at end of file diff --git a/workers/unity/ProjectSettings/BurstAotSettings_StandaloneLinux.json b/workers/unity/ProjectSettings/BurstAotSettings_StandaloneLinux.json index 5a8683dcf..ec0089d85 100644 --- a/workers/unity/ProjectSettings/BurstAotSettings_StandaloneLinux.json +++ b/workers/unity/ProjectSettings/BurstAotSettings_StandaloneLinux.json @@ -6,6 +6,6 @@ "m_EditorClassIdentifier": "Unity.Burst.Editor:Unity.Burst.Editor:BurstPlatformAotSettings", "DisableOptimisations": false, "DisableSafetyChecks": true, - "DisableBurstCompilation": true + "DisableBurstCompilation": false } } \ No newline at end of file diff --git a/workers/unity/ProjectSettings/BurstAotSettings_StandaloneLinux64.json b/workers/unity/ProjectSettings/BurstAotSettings_StandaloneLinux64.json index 5a8683dcf..ec0089d85 100644 --- a/workers/unity/ProjectSettings/BurstAotSettings_StandaloneLinux64.json +++ b/workers/unity/ProjectSettings/BurstAotSettings_StandaloneLinux64.json @@ -6,6 +6,6 @@ "m_EditorClassIdentifier": "Unity.Burst.Editor:Unity.Burst.Editor:BurstPlatformAotSettings", "DisableOptimisations": false, "DisableSafetyChecks": true, - "DisableBurstCompilation": true + "DisableBurstCompilation": false } } \ No newline at end of file diff --git a/workers/unity/ProjectSettings/BurstAotSettings_StandaloneOSX.json b/workers/unity/ProjectSettings/BurstAotSettings_StandaloneOSX.json index 5a8683dcf..ec0089d85 100644 --- a/workers/unity/ProjectSettings/BurstAotSettings_StandaloneOSX.json +++ b/workers/unity/ProjectSettings/BurstAotSettings_StandaloneOSX.json @@ -6,6 +6,6 @@ "m_EditorClassIdentifier": "Unity.Burst.Editor:Unity.Burst.Editor:BurstPlatformAotSettings", "DisableOptimisations": false, "DisableSafetyChecks": true, - "DisableBurstCompilation": true + "DisableBurstCompilation": false } } \ No newline at end of file diff --git a/workers/unity/ProjectSettings/BurstAotSettings_StandaloneWindows.json b/workers/unity/ProjectSettings/BurstAotSettings_StandaloneWindows.json index 5a8683dcf..ec0089d85 100644 --- a/workers/unity/ProjectSettings/BurstAotSettings_StandaloneWindows.json +++ b/workers/unity/ProjectSettings/BurstAotSettings_StandaloneWindows.json @@ -6,6 +6,6 @@ "m_EditorClassIdentifier": "Unity.Burst.Editor:Unity.Burst.Editor:BurstPlatformAotSettings", "DisableOptimisations": false, "DisableSafetyChecks": true, - "DisableBurstCompilation": true + "DisableBurstCompilation": false } } \ No newline at end of file From 18900fcff851068b2d10b5f69d4ecb2d8a8ef760 Mon Sep 17 00:00:00 2001 From: Bryan Wong Date: Tue, 1 Sep 2020 11:24:37 +0100 Subject: [PATCH 2/4] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64c66863a..f0321c1b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ - Migrated launch configurations to latest game templates. [#120](https://github.com/spatialos/gdk-for-unity-blank-project/pull/120) +### Fixed + +- Enable Burst by default. [#124](https://github.com/spatialos/gdk-for-unity-blank-project/pull/124) + ## `0.3.10` - 2020-08-18 ### Changed From 0dfb748d91fbc6837e77f510152512f2b9068240 Mon Sep 17 00:00:00 2001 From: Bryan Wong Date: Tue, 1 Sep 2020 12:39:38 +0100 Subject: [PATCH 3/4] Update BurstAotSettings_Android.json --- workers/unity/ProjectSettings/BurstAotSettings_Android.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workers/unity/ProjectSettings/BurstAotSettings_Android.json b/workers/unity/ProjectSettings/BurstAotSettings_Android.json index ec0089d85..1399cab21 100644 --- a/workers/unity/ProjectSettings/BurstAotSettings_Android.json +++ b/workers/unity/ProjectSettings/BurstAotSettings_Android.json @@ -6,6 +6,6 @@ "m_EditorClassIdentifier": "Unity.Burst.Editor:Unity.Burst.Editor:BurstPlatformAotSettings", "DisableOptimisations": false, "DisableSafetyChecks": true, - "DisableBurstCompilation": false + "DisableBurstCompilation": true } -} \ No newline at end of file +} From a24f6d28f7e023cb3351bc51932083dcc61bc25d Mon Sep 17 00:00:00 2001 From: Bryan Wong Date: Tue, 1 Sep 2020 12:58:27 +0100 Subject: [PATCH 4/4] Update CHANGELOG.md --- CHANGELOG.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0321c1b9..224348e99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,6 @@ ### Changed - Migrated launch configurations to latest game templates. [#120](https://github.com/spatialos/gdk-for-unity-blank-project/pull/120) - -### Fixed - - Enable Burst by default. [#124](https://github.com/spatialos/gdk-for-unity-blank-project/pull/124) ## `0.3.10` - 2020-08-18