Skip to content
This repository was archived by the owner on Oct 20, 2021. It is now read-only.

Commit 5a726a4

Browse files
authored
Add quicksearch package (#292)
* Update gitignore * Add quick search + dependencies * CHANGELOG.md
1 parent 9435b8d commit 5a726a4

File tree

6 files changed

+68
-25
lines changed

6 files changed

+68
-25
lines changed

.gitignore

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,12 @@
11
/build
2-
/workers/unity/build/
32
/logs/
43
.spatialos/
54
.idea/
65
.vs/
76
.DS_Store
87
DevAuthToken.txt*
98

10-
#Unity Engine Gitignore (https://github.com/github/gitignore/blob/master/Unity.gitignore)
11-
workers/unity/[Ll]ibrary/
12-
workers/unity/[Tt]emp/
13-
workers/unity/Logs/
14-
[Oo]bj/
15-
[Bb]in/
16-
workers/unity/ProjectSettings/UnityConnectSettings.asset
17-
189
# Autogenerated VS/MD/Consulo solution and project files
19-
workers/unity/*.csproj
20-
workers/unity/*.sln
2110
*.unityproj
2211
*.suo
2312
*.tmp
@@ -34,19 +23,6 @@ sysinfo.txt
3423
*.apk
3524
*.unitypackage
3625

37-
# Generated code
38-
# We need to include some of the generated code below, which means we can't use a `directory/` ignore.
39-
# Once a directory is ignored by git, nothing underneath it can ever be un-ignored.
40-
workers/unity/Assets/Generated/Source.meta
41-
workers/unity/Assets/Generated/Source/**/*.*
42-
workers/unity/Assets/Generated/Editor.meta
43-
workers/unity/Assets/Generated/Editor/**/*.*
44-
45-
workers/unity/Assets/Plugins/Improbable/
46-
workers/unity/Assets/Plugins/Improbable.meta
47-
48-
# Schema from Unity Package Manager Packages (Copied via tools/CopySchema)
49-
schema/from_gdk_packages
5026
_ReSharper.Caches
5127

5228
.shared-ci/

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@
22

33
## Unreleased
44

5+
## Added
6+
7+
- Added `com.unity.quicksearch` package for easy search. [#292](https://github.com/spatialos/gdk-for-unity-fps-starter-project/pull/292)
8+
- Includes adding modules for `UIElements` and `AssetBundles`.
9+
510
## `0.3.10` - 2020-08-18
611

712
### Changed
813

914
- Upgraded to GDK for Unity version `0.3.10`
15+
1016
## `0.3.9` - 2020-07-24
1117

1218
### Changed

workers/unity/.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Unity generated files
2+
/UIElementsSchema
3+
/[Ll]ibrary/
4+
/[Tt]emp/
5+
/[Oo]bj/
6+
/Logs/
7+
/UserSettings/
8+
/ProjectSettings/UnityConnectSettings.asset
9+
/*.csproj
10+
/*.sln
11+
/Packages/packages-lock.json
12+
13+
# Build artifacts
14+
/build/
15+
16+
# SpatialOS Generated Files
17+
/Assets/Generated/Source.meta
18+
/Assets/Generated/Source/**/*.*
19+
/Assets/Generated/Editor.meta
20+
/Assets/Generated/Editor/**/*.*
21+
22+
# OLD Plugins folder
23+
/Assets/Plugins/Improbable/
24+
/Assets/Plugins/Improbable.meta
25+
26+
# Jetbrains
27+
/Assets/Plugins/Editor/Jetbrains
28+
/Assets/Plugins/Editor/Jetbrains.meta

workers/unity/Assets/Assets.index

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "Assets",
3+
"type": "asset",
4+
"roots": [],
5+
"includes": [],
6+
"excludes": [
7+
"Temp/",
8+
"External/"
9+
],
10+
"baseScore": 100,
11+
"options": {
12+
"disabled": false,
13+
"files": true,
14+
"directories": false,
15+
"fstats": true,
16+
"types": true,
17+
"properties": true,
18+
"dependencies": true
19+
}
20+
}

workers/unity/Assets/Assets.index.meta

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

workers/unity/Packages/manifest.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"dependencies": {
33
"com.unity.ide.rider": "1.1.4",
44
"com.unity.postprocessing": "2.3.0",
5+
"com.unity.quicksearch": "2.0.0",
56
"com.unity.ugui": "1.0.0",
67
"io.improbable.gdk.buildsystem": "0.3.10",
78
"io.improbable.gdk.core": "0.3.10",
@@ -16,13 +17,15 @@
1617
"io.improbable.gdk.transformsynchronization": "0.3.10",
1718
"com.unity.modules.ai": "1.0.0",
1819
"com.unity.modules.animation": "1.0.0",
20+
"com.unity.modules.assetbundle": "1.0.0",
1921
"com.unity.modules.audio": "1.0.0",
2022
"com.unity.modules.imgui": "1.0.0",
2123
"com.unity.modules.jsonserialize": "1.0.0",
2224
"com.unity.modules.particlesystem": "1.0.0",
2325
"com.unity.modules.physics": "1.0.0",
2426
"com.unity.modules.physics2d": "1.0.0",
2527
"com.unity.modules.ui": "1.0.0",
28+
"com.unity.modules.uielements": "1.0.0",
2629
"com.unity.modules.unityanalytics": "1.0.0",
2730
"com.unity.modules.unitywebrequest": "1.0.0",
2831
"com.unity.modules.vr": "1.0.0",
@@ -39,4 +42,4 @@
3942
]
4043
}
4144
]
42-
}
45+
}

0 commit comments

Comments
 (0)