fixes in tutorial saving

This commit is contained in:
2024-12-04 09:15:55 +01:00
parent 9f0ad6fe5f
commit 8c5ecb6405
7 changed files with 883 additions and 805 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -101,8 +101,14 @@ namespace Beyond
{ {
if (!currentStep) if (!currentStep)
{ {
return; if (steps.Count > 0)
{
currentStep = steps[0];
}
else
return;
} }
int id = steps.FindIndex(step => step == currentStep); int id = steps.FindIndex(step => step == currentStep);
for (int i = id; i < steps.Count; i++) for (int i = id; i < steps.Count; i++)
{ {

View File

@@ -13,19 +13,19 @@
"com.unity.2d.sprite": "1.0.0", "com.unity.2d.sprite": "1.0.0",
"com.unity.2d.tilemap": "1.0.0", "com.unity.2d.tilemap": "1.0.0",
"com.unity.formats.fbx": "4.1.3", "com.unity.formats.fbx": "4.1.3",
"com.unity.ide.rider": "3.0.25", "com.unity.ide.rider": "3.0.31",
"com.unity.ide.visualstudio": "2.0.22", "com.unity.ide.visualstudio": "2.0.22",
"com.unity.ide.vscode": "1.2.5", "com.unity.ide.vscode": "1.2.5",
"com.unity.mathematics": "1.2.6", "com.unity.mathematics": "1.2.6",
"com.unity.memoryprofiler": "0.7.0-preview.2", "com.unity.memoryprofiler": "0.7.0-preview.2",
"com.unity.postprocessing": "3.2.2", "com.unity.postprocessing": "3.4.0",
"com.unity.recorder": "3.0.3", "com.unity.recorder": "3.0.4",
"com.unity.render-pipelines.universal": "12.1.13", "com.unity.render-pipelines.universal": "12.1.15",
"com.unity.scriptablebuildpipeline": "1.20.1", "com.unity.scriptablebuildpipeline": "1.20.1",
"com.unity.textmeshpro": "3.0.6", "com.unity.textmeshpro": "3.0.6",
"com.unity.timeline": "1.6.5", "com.unity.timeline": "1.6.5",
"com.unity.ugui": "1.0.0", "com.unity.ugui": "1.0.0",
"com.unity.visualeffectgraph": "12.1.13", "com.unity.visualeffectgraph": "12.1.15",
"jp.keijiro.smrvfx": "1.1.6", "jp.keijiro.smrvfx": "1.1.6",
"com.unity.modules.ai": "1.0.0", "com.unity.modules.ai": "1.0.0",
"com.unity.modules.animation": "1.0.0", "com.unity.modules.animation": "1.0.0",

View File

@@ -27,11 +27,12 @@
"dependencies": {} "dependencies": {}
}, },
"com.unity.burst": { "com.unity.burst": {
"version": "1.8.9", "version": "1.8.18",
"depth": 1, "depth": 1,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
"com.unity.mathematics": "1.2.1" "com.unity.mathematics": "1.2.1",
"com.unity.modules.jsonserialize": "1.0.0"
}, },
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
@@ -60,7 +61,7 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.ide.rider": { "com.unity.ide.rider": {
"version": "3.0.25", "version": "3.0.31",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
@@ -101,7 +102,7 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.postprocessing": { "com.unity.postprocessing": {
"version": "3.2.2", "version": "3.4.0",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
@@ -110,7 +111,7 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.recorder": { "com.unity.recorder": {
"version": "3.0.3", "version": "3.0.4",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
@@ -119,7 +120,7 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.render-pipelines.core": { "com.unity.render-pipelines.core": {
"version": "12.1.13", "version": "12.1.15",
"depth": 1, "depth": 1,
"source": "builtin", "source": "builtin",
"dependencies": { "dependencies": {
@@ -129,14 +130,14 @@
} }
}, },
"com.unity.render-pipelines.universal": { "com.unity.render-pipelines.universal": {
"version": "12.1.13", "version": "12.1.15",
"depth": 0, "depth": 0,
"source": "builtin", "source": "builtin",
"dependencies": { "dependencies": {
"com.unity.mathematics": "1.2.1", "com.unity.mathematics": "1.2.1",
"com.unity.burst": "1.8.9", "com.unity.burst": "1.8.9",
"com.unity.render-pipelines.core": "12.1.13", "com.unity.render-pipelines.core": "12.1.15",
"com.unity.shadergraph": "12.1.13" "com.unity.shadergraph": "12.1.15"
} }
}, },
"com.unity.scriptablebuildpipeline": { "com.unity.scriptablebuildpipeline": {
@@ -154,11 +155,11 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.shadergraph": { "com.unity.shadergraph": {
"version": "12.1.13", "version": "12.1.15",
"depth": 1, "depth": 1,
"source": "builtin", "source": "builtin",
"dependencies": { "dependencies": {
"com.unity.render-pipelines.core": "12.1.13", "com.unity.render-pipelines.core": "12.1.15",
"com.unity.searcher": "4.9.1" "com.unity.searcher": "4.9.1"
} }
}, },
@@ -204,12 +205,12 @@
} }
}, },
"com.unity.visualeffectgraph": { "com.unity.visualeffectgraph": {
"version": "12.1.13", "version": "12.1.15",
"depth": 0, "depth": 0,
"source": "builtin", "source": "builtin",
"dependencies": { "dependencies": {
"com.unity.shadergraph": "12.1.13", "com.unity.shadergraph": "12.1.15",
"com.unity.render-pipelines.core": "12.1.13" "com.unity.render-pipelines.core": "12.1.15"
} }
}, },
"jp.keijiro.smrvfx": { "jp.keijiro.smrvfx": {

View File

@@ -11,10 +11,10 @@ EditorBuildSettings:
- enabled: 1 - enabled: 1
path: Assets/Scenes/Intro.unity path: Assets/Scenes/Intro.unity
guid: 4b539ebea87e44d9d9a11edf96f9313e guid: 4b539ebea87e44d9d9a11edf96f9313e
- enabled: 1 - enabled: 0
path: Assets/Scenes/Land_01/Land_of_Death_Wasteland.unity path: Assets/Scenes/Land_01/Land_of_Death_Wasteland.unity
guid: a1589cdbd2c30d24086609fde063c860 guid: a1589cdbd2c30d24086609fde063c860
- enabled: 0 - enabled: 1
path: Assets/Scenes/Land_01/Land_Of_Death_Demo.unity path: Assets/Scenes/Land_01/Land_Of_Death_Demo.unity
guid: e39ef5fabe05d4cc7a91b22299648632 guid: e39ef5fabe05d4cc7a91b22299648632
- enabled: 1 - enabled: 1

View File

@@ -75,6 +75,7 @@ PlayerSettings:
androidMinimumWindowWidth: 400 androidMinimumWindowWidth: 400
androidMinimumWindowHeight: 300 androidMinimumWindowHeight: 300
androidFullscreenMode: 1 androidFullscreenMode: 1
androidAutoRotationBehavior: 1
defaultIsNativeResolution: 1 defaultIsNativeResolution: 1
macRetinaSupport: 1 macRetinaSupport: 1
runInBackground: 1 runInBackground: 1
@@ -244,7 +245,7 @@ PlayerSettings:
iPhone: eu.3dev.beyond iPhone: eu.3dev.beyond
buildNumber: buildNumber:
Standalone: 0 Standalone: 0
iPhone: 2898 iPhone: 2906
tvOS: 0 tvOS: 0
overrideDefaultApplicationIdentifier: 1 overrideDefaultApplicationIdentifier: 1
AndroidBundleVersionCode: 1 AndroidBundleVersionCode: 1
@@ -330,6 +331,7 @@ PlayerSettings:
useCustomLauncherGradleManifest: 0 useCustomLauncherGradleManifest: 0
useCustomBaseGradleTemplate: 0 useCustomBaseGradleTemplate: 0
useCustomGradlePropertiesTemplate: 0 useCustomGradlePropertiesTemplate: 0
useCustomGradleSettingsTemplate: 0
useCustomProguardFile: 0 useCustomProguardFile: 0
AndroidTargetArchitectures: 1 AndroidTargetArchitectures: 1
AndroidTargetDevices: 0 AndroidTargetDevices: 0
@@ -350,7 +352,6 @@ PlayerSettings:
banner: {fileID: 0} banner: {fileID: 0}
androidGamepadSupportLevel: 0 androidGamepadSupportLevel: 0
chromeosInputEmulation: 1 chromeosInputEmulation: 1
AndroidMinifyWithR8: 0
AndroidMinifyRelease: 0 AndroidMinifyRelease: 0
AndroidMinifyDebug: 0 AndroidMinifyDebug: 0
AndroidValidateAppBundleSize: 1 AndroidValidateAppBundleSize: 1
@@ -954,6 +955,7 @@ PlayerSettings:
metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628,
a: 1} a: 1}
metroSplashScreenUseBackgroundColor: 0 metroSplashScreenUseBackgroundColor: 0
syncCapabilities: 0
platformCapabilities: {} platformCapabilities: {}
metroTargetDeviceFamilies: {} metroTargetDeviceFamilies: {}
metroFTAName: metroFTAName:

View File

@@ -1,2 +1,2 @@
m_EditorVersion: 2021.3.32f1 m_EditorVersion: 2021.3.45f1
m_EditorVersionWithRevision: 2021.3.32f1 (3b9dae9532f5) m_EditorVersionWithRevision: 2021.3.45f1 (0da89fac8e79)