Skip to content

Commit e596598

Browse files
committed
fix(encoding): update encoding functions to newer unity Collections package version
1 parent cdc5111 commit e596598

File tree

23 files changed

+238
-201
lines changed

23 files changed

+238
-201
lines changed
Lines changed: 55 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,56 @@
11
{
2-
"files.exclude": {
3-
"**/Builds": true,
4-
"**/Logs": true,
5-
"**/.DS_Store": true,
6-
"**/.git": true,
7-
"**/.gitmodules": true,
8-
"**/*.booproj": true,
9-
"**/*.pidb": true,
10-
"**/*.suo": true,
11-
"**/*.user": true,
12-
"**/*.userprefs": true,
13-
"**/*.unityproj": true,
14-
"**/*.dll": true,
15-
"**/*.exe": true,
16-
"**/*.pdf": true,
17-
"**/*.mid": true,
18-
"**/*.midi": true,
19-
"**/*.wav": true,
20-
"**/*.gif": true,
21-
"**/*.ico": true,
22-
"**/*.jpg": true,
23-
"**/*.jpeg": true,
24-
"**/*.png": true,
25-
"**/*.psd": true,
26-
"**/*.tga": true,
27-
"**/*.tif": true,
28-
"**/*.tiff": true,
29-
"**/*.3ds": true,
30-
"**/*.3DS": true,
31-
"**/*.fbx": true,
32-
"**/*.FBX": true,
33-
"**/*.lxo": true,
34-
"**/*.LXO": true,
35-
"**/*.ma": true,
36-
"**/*.MA": true,
37-
"**/*.obj": true,
38-
"**/*.OBJ": true,
39-
"**/*.asset": true,
40-
"**/*.cubemap": true,
41-
"**/*.flare": true,
42-
"**/*.mat": true,
43-
"**/*.meta": true,
44-
"**/*.prefab": true,
45-
"build/": true,
46-
"Build/": true,
47-
"Library/": true,
48-
"library/": true,
49-
"obj/": true,
50-
"Obj/": true,
51-
"ProjectSettings/": true,
52-
"temp/": true,
53-
"Temp/": true
54-
}
55-
}
2+
"files.exclude": {
3+
"**/Builds": true,
4+
"**/Logs": true,
5+
"**/.DS_Store": true,
6+
"**/.git": true,
7+
"**/.gitmodules": true,
8+
"**/*.booproj": true,
9+
"**/*.pidb": true,
10+
"**/*.suo": true,
11+
"**/*.user": true,
12+
"**/*.userprefs": true,
13+
"**/*.unityproj": true,
14+
"**/*.dll": true,
15+
"**/*.exe": true,
16+
"**/*.pdf": true,
17+
"**/*.mid": true,
18+
"**/*.midi": true,
19+
"**/*.wav": true,
20+
"**/*.gif": true,
21+
"**/*.ico": true,
22+
"**/*.jpg": true,
23+
"**/*.jpeg": true,
24+
"**/*.png": true,
25+
"**/*.psd": true,
26+
"**/*.tga": true,
27+
"**/*.tif": true,
28+
"**/*.tiff": true,
29+
"**/*.3ds": true,
30+
"**/*.3DS": true,
31+
"**/*.fbx": true,
32+
"**/*.FBX": true,
33+
"**/*.lxo": true,
34+
"**/*.LXO": true,
35+
"**/*.ma": true,
36+
"**/*.MA": true,
37+
"**/*.obj": true,
38+
"**/*.OBJ": true,
39+
"**/*.asset": true,
40+
"**/*.cubemap": true,
41+
"**/*.flare": true,
42+
"**/*.mat": true,
43+
"**/*.meta": true,
44+
"**/*.prefab": true,
45+
"build/": true,
46+
"Build/": true,
47+
"Library/": true,
48+
"library/": true,
49+
"obj/": true,
50+
"Obj/": true,
51+
"ProjectSettings/": true,
52+
"temp/": true,
53+
"Temp/": true
54+
},
55+
"dotnet.defaultSolution": "Algorand.Unity.AssetStore.sln"
56+
}

Algorand.Unity.AssetStore/Packages/com.unity.asset-store-tools/Editor/AssetStoreValidator/Scripts/TestActions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using UnityEditor;
99
using UnityEditor.SceneManagement;
1010
using UnityEngine;
11-
using UnityEngine.Experimental.Rendering;
11+
1212
using UnityEngine.SceneManagement;
1313
using CompilationPipeline = UnityEditor.Compilation.CompilationPipeline;
1414
using Object = UnityEngine.Object;
@@ -1025,7 +1025,7 @@ private bool ShaderHasError(UnityEngine.Object obj)
10251025
return ShaderUtil.ShaderHasError(shader);
10261026
case ComputeShader shader:
10271027
return ShaderUtil.GetComputeShaderMessageCount(shader) > 0;
1028-
case RayTracingShader shader:
1028+
case UnityEngine.Rendering.RayTracingShader shader:
10291029
return ShaderUtil.GetRayTracingShaderMessageCount(shader) > 0;
10301030
default:
10311031
return false;

Algorand.Unity.AssetStore/Packages/manifest.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"dependencies": {
3-
"com.unity.ide.rider": "3.0.24",
4-
"com.unity.ide.visualstudio": "2.0.20",
3+
"com.unity.ai.navigation": "2.0.8",
4+
"com.unity.ide.rider": "3.0.36",
5+
"com.unity.ide.visualstudio": "2.0.23",
6+
"com.unity.multiplayer.center": "1.0.0",
7+
"com.unity.modules.accessibility": "1.0.0",
58
"com.unity.modules.ai": "1.0.0",
69
"com.unity.modules.androidjni": "1.0.0",
710
"com.unity.modules.animation": "1.0.0",

Algorand.Unity.AssetStore/Packages/packages-lock.json

Lines changed: 56 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -16,41 +16,51 @@
1616
"source": "embedded",
1717
"dependencies": {}
1818
},
19+
"com.unity.ai.navigation": {
20+
"version": "2.0.8",
21+
"depth": 0,
22+
"source": "registry",
23+
"dependencies": {
24+
"com.unity.modules.ai": "1.0.0"
25+
},
26+
"url": "https://packages.unity.com"
27+
},
1928
"com.unity.asset-store-tools": {
2029
"version": "file:com.unity.asset-store-tools",
2130
"depth": 0,
2231
"source": "embedded",
2332
"dependencies": {}
2433
},
2534
"com.unity.burst": {
26-
"version": "1.6.6",
35+
"version": "1.8.21",
2736
"depth": 2,
2837
"source": "registry",
2938
"dependencies": {
30-
"com.unity.mathematics": "1.2.1"
39+
"com.unity.mathematics": "1.2.1",
40+
"com.unity.modules.jsonserialize": "1.0.0"
3141
},
3242
"url": "https://packages.unity.com"
3343
},
3444
"com.unity.collections": {
35-
"version": "1.5.1",
45+
"version": "2.5.1",
3646
"depth": 1,
3747
"source": "registry",
3848
"dependencies": {
39-
"com.unity.burst": "1.6.6",
49+
"com.unity.burst": "1.8.17",
50+
"com.unity.test-framework": "1.4.5",
4051
"com.unity.nuget.mono-cecil": "1.11.4",
41-
"com.unity.test-framework": "1.1.31"
52+
"com.unity.test-framework.performance": "3.0.3"
4253
},
4354
"url": "https://packages.unity.com"
4455
},
4556
"com.unity.ext.nunit": {
46-
"version": "1.0.6",
57+
"version": "2.0.5",
4758
"depth": 1,
48-
"source": "registry",
49-
"dependencies": {},
50-
"url": "https://packages.unity.com"
59+
"source": "builtin",
60+
"dependencies": {}
5161
},
5262
"com.unity.ide.rider": {
53-
"version": "3.0.24",
63+
"version": "3.0.36",
5464
"depth": 0,
5565
"source": "registry",
5666
"dependencies": {
@@ -59,7 +69,7 @@
5969
"url": "https://packages.unity.com"
6070
},
6171
"com.unity.ide.visualstudio": {
62-
"version": "2.0.20",
72+
"version": "2.0.23",
6373
"depth": 0,
6474
"source": "registry",
6575
"dependencies": {
@@ -68,12 +78,20 @@
6878
"url": "https://packages.unity.com"
6979
},
7080
"com.unity.mathematics": {
71-
"version": "1.2.6",
81+
"version": "1.3.2",
7282
"depth": 3,
7383
"source": "registry",
7484
"dependencies": {},
7585
"url": "https://packages.unity.com"
7686
},
87+
"com.unity.multiplayer.center": {
88+
"version": "1.0.0",
89+
"depth": 0,
90+
"source": "builtin",
91+
"dependencies": {
92+
"com.unity.modules.uielements": "1.0.0"
93+
}
94+
},
7795
"com.unity.nuget.mono-cecil": {
7896
"version": "1.11.4",
7997
"depth": 2,
@@ -82,25 +100,40 @@
82100
"url": "https://packages.unity.com"
83101
},
84102
"com.unity.test-framework": {
85-
"version": "1.1.33",
103+
"version": "1.5.1",
86104
"depth": 1,
87-
"source": "registry",
105+
"source": "builtin",
88106
"dependencies": {
89-
"com.unity.ext.nunit": "1.0.6",
107+
"com.unity.ext.nunit": "2.0.3",
90108
"com.unity.modules.imgui": "1.0.0",
91109
"com.unity.modules.jsonserialize": "1.0.0"
110+
}
111+
},
112+
"com.unity.test-framework.performance": {
113+
"version": "3.1.0",
114+
"depth": 2,
115+
"source": "registry",
116+
"dependencies": {
117+
"com.unity.test-framework": "1.1.33",
118+
"com.unity.modules.jsonserialize": "1.0.0"
92119
},
93120
"url": "https://packages.unity.com"
94121
},
95122
"com.unity.ugui": {
96-
"version": "1.0.0",
123+
"version": "2.0.0",
97124
"depth": 1,
98125
"source": "builtin",
99126
"dependencies": {
100127
"com.unity.modules.ui": "1.0.0",
101128
"com.unity.modules.imgui": "1.0.0"
102129
}
103130
},
131+
"com.unity.modules.accessibility": {
132+
"version": "1.0.0",
133+
"depth": 0,
134+
"source": "builtin",
135+
"dependencies": {}
136+
},
104137
"com.unity.modules.ai": {
105138
"version": "1.0.0",
106139
"depth": 0,
@@ -148,6 +181,12 @@
148181
"com.unity.modules.animation": "1.0.0"
149182
}
150183
},
184+
"com.unity.modules.hierarchycore": {
185+
"version": "1.0.0",
186+
"depth": 1,
187+
"source": "builtin",
188+
"dependencies": {}
189+
},
151190
"com.unity.modules.imageconversion": {
152191
"version": "1.0.0",
153192
"depth": 0,
@@ -237,17 +276,7 @@
237276
"com.unity.modules.ui": "1.0.0",
238277
"com.unity.modules.imgui": "1.0.0",
239278
"com.unity.modules.jsonserialize": "1.0.0",
240-
"com.unity.modules.uielementsnative": "1.0.0"
241-
}
242-
},
243-
"com.unity.modules.uielementsnative": {
244-
"version": "1.0.0",
245-
"depth": 1,
246-
"source": "builtin",
247-
"dependencies": {
248-
"com.unity.modules.ui": "1.0.0",
249-
"com.unity.modules.imgui": "1.0.0",
250-
"com.unity.modules.jsonserialize": "1.0.0"
279+
"com.unity.modules.hierarchycore": "1.0.0"
251280
}
252281
},
253282
"com.unity.modules.umbra": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"MonoBehaviour": {
3-
"Version": 3,
3+
"Version": 5,
44
"DisabledWarnings": ""
55
}
66
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:aba89fd1a1ddad182727ad82727e536d27372e90328a8196da2a4560398983dd
3+
size 157
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:7bfc90f77e60833a39f8148c26d827ca3f723b483e4c6b90b08cea611bc869e3
3-
size 23639
2+
oid sha256:4fabb9bed4a8569a2219f1e60bcffa8571b67a01aa2322c8b17b4a5d1125b92c
3+
size 25606
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2021.3.30f1
2-
m_EditorVersionWithRevision: 2021.3.30f1 (b4360d7cdac4)
1+
m_EditorVersion: 6000.0.51f1
2+
m_EditorVersionWithRevision: 6000.0.51f1 (01c3ff5872c5)

0 commit comments

Comments
 (0)