Skip to content

Commit 0619f10

Browse files
authored
Merge pull request #45 from monaverse/tm/lts-2022.3.6f1-upgrade
upgrade project to 2022.3.6f1 LTS
2 parents 9326664 + e682c49 commit 0619f10

File tree

9 files changed

+40
-43
lines changed

9 files changed

+40
-43
lines changed

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"visualstudiotoolsforunity.vstuc"
4+
]
5+
}

.vscode/launch.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Attach to Unity",
6+
"type": "vstuc",
7+
"request": "attach",
8+
}
9+
]
10+
}

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,6 @@
7373
"titleBar.inactiveForeground": "#21152b"
7474
},
7575
"peacock.color": "#7a69c9",
76-
"prettier.enable": false
76+
"prettier.enable": false,
77+
"dotnet.defaultSolution": "spacestarter.sln"
7778
}

Assets/Mona/QualityAssurance/QualityAssurance.Tests.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ private static void TestSceneLayer(string sceneName, string layerTag, string mis
3232
bool found = false;
3333
foreach (var rootObject in rootObjects)
3434
{
35-
if (rootObject.tag != layerTag) continue;
35+
if (!rootObject.CompareTag(layerTag)) continue;
3636

3737
found = true;
3838
break;
@@ -47,6 +47,7 @@ private static void TestSceneLayer(string sceneName, string layerTag, string mis
4747
if (
4848
!rootObject.tag.Equals(layerTag)
4949
&& !rootObject.name.StartsWith("!ftraceLightmaps")
50+
&& !rootObject.name.Equals("VisualScripting SceneVariables")
5051
&& !rootObject.name.Equals("PDC")
5152
&& rootObject.activeSelf
5253
)
@@ -95,7 +96,7 @@ public static void TestLayerContents(string layerName, string[] validTags, strin
9596

9697
foreach (string tag in validTags)
9798
{
98-
if (rootObject.tag == tag) isValid = true;
99+
if (rootObject.CompareTag(tag)) isValid = true;
99100
}
100101

101102
if (isValid) continue;
@@ -104,7 +105,7 @@ public static void TestLayerContents(string layerName, string[] validTags, strin
104105
{
105106
foreach (string tag in validTags)
106107
{
107-
if (child.tag != tag) continue;
108+
if (!child.CompareTag(tag)) continue;
108109
isValid = true;
109110
break;
110111
}

Assets/Mona/TemplateHelper/TemplateVersion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ namespace Mona
66
{
77
public static class TemplateInfo
88
{
9-
public static readonly string Version = "2.0.4";
10-
public static readonly string UnityVer = "2022.2.3";
9+
public static readonly string Version = "2.0.5";
10+
public static readonly string UnityVer = "2022.3.6";
1111
}
1212
}
1313
#endif

Packages/manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"dependencies": {
3-
"com.unity.ai.navigation": "1.1.1",
4-
"com.unity.collab-proxy": "1.17.7",
3+
"com.unity.ai.navigation": "1.1.4",
4+
"com.unity.collab-proxy": "2.0.5",
55
"com.unity.editorcoroutines": "1.0.0",
6-
"com.unity.ide.rider": "3.0.17",
7-
"com.unity.ide.visualstudio": "2.0.17",
6+
"com.unity.ide.rider": "3.0.24",
7+
"com.unity.ide.visualstudio": "2.0.20",
88
"com.unity.ide.vscode": "1.2.5",
99
"com.unity.test-framework": "1.1.33",
1010
"com.unity.textmeshpro": "3.0.6",
11-
"com.unity.timeline": "1.7.2",
11+
"com.unity.timeline": "1.7.5",
1212
"com.unity.ugui": "1.0.0",
1313
"com.unity.visualscripting": "1.8.0",
1414
"com.unity.modules.ai": "1.0.0",

Packages/packages-lock.json

Lines changed: 6 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"dependencies": {}
88
},
99
"com.unity.ai.navigation": {
10-
"version": "1.1.1",
10+
"version": "1.1.4",
1111
"depth": 0,
1212
"source": "registry",
1313
"dependencies": {
@@ -16,12 +16,10 @@
1616
"url": "https://packages.unity.com"
1717
},
1818
"com.unity.collab-proxy": {
19-
"version": "1.17.7",
19+
"version": "2.0.5",
2020
"depth": 0,
2121
"source": "registry",
22-
"dependencies": {
23-
"com.unity.services.core": "1.0.1"
24-
},
22+
"dependencies": {},
2523
"url": "https://packages.unity.com"
2624
},
2725
"com.unity.editorcoroutines": {
@@ -39,7 +37,7 @@
3937
"url": "https://packages.unity.com"
4038
},
4139
"com.unity.ide.rider": {
42-
"version": "3.0.17",
40+
"version": "3.0.24",
4341
"depth": 0,
4442
"source": "registry",
4543
"dependencies": {
@@ -48,7 +46,7 @@
4846
"url": "https://packages.unity.com"
4947
},
5048
"com.unity.ide.visualstudio": {
51-
"version": "2.0.17",
49+
"version": "2.0.20",
5250
"depth": 0,
5351
"source": "registry",
5452
"dependencies": {
@@ -63,24 +61,6 @@
6361
"dependencies": {},
6462
"url": "https://packages.unity.com"
6563
},
66-
"com.unity.nuget.newtonsoft-json": {
67-
"version": "3.0.2",
68-
"depth": 2,
69-
"source": "registry",
70-
"dependencies": {},
71-
"url": "https://packages.unity.com"
72-
},
73-
"com.unity.services.core": {
74-
"version": "1.7.0",
75-
"depth": 1,
76-
"source": "registry",
77-
"dependencies": {
78-
"com.unity.modules.unitywebrequest": "1.0.0",
79-
"com.unity.nuget.newtonsoft-json": "3.0.2",
80-
"com.unity.modules.androidjni": "1.0.0"
81-
},
82-
"url": "https://packages.unity.com"
83-
},
8464
"com.unity.test-framework": {
8565
"version": "1.1.33",
8666
"depth": 0,
@@ -102,7 +82,7 @@
10282
"url": "https://packages.unity.com"
10383
},
10484
"com.unity.timeline": {
105-
"version": "1.7.2",
85+
"version": "1.7.5",
10686
"depth": 0,
10787
"source": "registry",
10888
"dependencies": {

ProjectSettings/ProjectVersion.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2022.2.3f1
2-
m_EditorVersionWithRevision: 2022.2.3f1 (55531d7fa82e)
1+
m_EditorVersion: 2022.3.6f1
2+
m_EditorVersionWithRevision: 2022.3.6f1 (b9e6e7e9fa2d)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<p align="center">Start building your own custom Mona Space using our official template</p>
33

44
## ⬇️ Unity Version
5-
This template requires the ```Unity 2022.2.3f1``` version. You can download it here:
6-
https://unity.com/releases/editor/whats-new/2022.2.3
5+
This template requires the ```Unity 2022.3.6f1``` version. You can download it here:
6+
https://unity.com/releases/editor/qa/lts-releases
77

8-
Be sure to also install ```WebGL Build Support```.
8+
Be sure to also install ```WebGL Build Support``` or you won't be able to export your space.
99

1010

1111
## 📃 Documentation
@@ -20,4 +20,4 @@ Mona [Video tutorials here](https://docs.monaverse.com/create/resources/mona-tut
2020
For support, join our [Discord support channel](https://discord.gg/gcrGHzTerU)
2121

2222
## ⚙️ Template version
23-
2.0.4
23+
2.0.5

0 commit comments

Comments
 (0)