Skip to content

Commit a8798b3

Browse files
committed
Upgrade to 2019 and various fixes
1 parent 1c48151 commit a8798b3

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

Assets/FluidStateMachine/Scripts/Builds/Editor/ExportProject.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ static void BuildProject () {
1010
var files = GetFiles();
1111
var path = $"{Application.dataPath}/../FluidStateMachine.unitypackage";
1212

13-
AssetDatabase.ExportPackage(files.ToArray(), $"{path}/Fluid Behavior Tree.unitypackage");
13+
Debug.Log($"Exporting to {path}");
14+
AssetDatabase.ExportPackage(files.ToArray(), path);
1415
}
1516

1617
private static List<string> GetFiles () {
1718
return AssetDatabase
1819
.FindAssets("", new[] {
19-
"Assets/FluidBehaviorTree",
20+
"Assets/FluidStateMachine",
2021
}).ToList()
2122
.Select(AssetDatabase.GUIDToAssetPath)
2223
.Where(file => !file.Contains("Test.cs")).ToList();

Packages/manifest.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"dependencies": {
33
"com.unity.ads": "2.0.8",
4-
"com.unity.analytics": "3.2.2",
5-
"com.unity.collab-proxy": "1.2.15",
6-
"com.unity.package-manager-ui": "2.0.7",
4+
"com.unity.analytics": "3.3.2",
5+
"com.unity.collab-proxy": "1.2.16",
6+
"com.unity.multiplayer-hlapi": "1.0.2",
7+
"com.unity.package-manager-ui": "2.1.2",
78
"com.unity.probuilder": "4.0.5",
8-
"com.unity.purchasing": "2.0.3",
9-
"com.unity.textmeshpro": "1.3.0",
9+
"com.unity.purchasing": "2.0.6",
10+
"com.unity.textmeshpro": "2.0.0",
11+
"com.unity.timeline": "1.0.0",
12+
"com.unity.xr.legacyinputhelpers": "2.0.2",
1013
"com.unity.modules.ai": "1.0.0",
1114
"com.unity.modules.animation": "1.0.0",
1215
"com.unity.modules.assetbundle": "1.0.0",

ProjectSettings/ProjectVersion.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
m_EditorVersion: 2018.4.0f1
1+
m_EditorVersion: 2019.1.2f1
2+
m_EditorVersionWithRevision: 2019.1.2f1 (3e18427e571f)

ProjectSettings/XRSettings.asset

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"m_SettingKeys": [
3+
"VR Device Disabled",
4+
"VR Device User Alert"
5+
],
6+
"m_SettingValues": [
7+
"False",
8+
"False"
9+
]
10+
}

0 commit comments

Comments
 (0)