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

Commit 1723e52

Browse files
author
Paul Balaji
authored
Release 0.2.2 (#183)
1 parent e9cfb62 commit 1723e52

File tree

14 files changed

+26
-42
lines changed

14 files changed

+26
-42
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
## `0.2.2` - 2019-05-15
6+
57
### Breaking Changes
68

9+
- The `w4_r1000_e1` template has now been deprecated. If you use this template, update your launch configuration to use the new `w4_r1000_e10` template.
710
- Removed the `AndroidWorkerConnector` and `iOSWorkerConnector` and their specific scenes. You can now use the `MobileWorkerConnector` and its `FPS-MobileClientScene` to connect to a mobile device.
811

912
### Added

gdk.pinned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
73bf2847fa915b8a927cd22b08562ae85cdd3143
1+
4471b599eac8a864161c6ce3b6cc5d4ee2e02cc3

packer.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"package_name": "gdk-for-unity-fps-starter-project",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"git_packages": [
55
{
66
"clone_url": "[email protected]:spatialos/gdk-for-unity-fps-starter-project.git",

workers/unity/Assets/Fps/Improbable.Fps.asmdef

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "Improbable.Fps",
33
"references": [
44
"Improbable.Gdk.Core",
5-
"Improbable.Gdk.DeploymentManager",
65
"Improbable.Gdk.GameObjectCreation",
76
"Improbable.Gdk.Generated",
87
"Improbable.Gdk.Guns",

workers/unity/Assets/Fps/Scripts/GameLogic/Session/SessionListener.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ private void OnEnable()
1818
var uiManager = GameObject.FindGameObjectWithTag("OnScreenUI")?.GetComponent<UIManager>();
1919
if (uiManager == null)
2020
{
21-
throw new NullReferenceException("Was not able to find the OnScreenUI prefab in the scene.");
21+
Debug.LogWarning("Was not able to find the OnScreenUI prefab in the scene.");
22+
enabled = false;
23+
return;
2224
}
2325

2426
uiManager.ShowGameView();

workers/unity/Packages/com.improbable.gdk.deploymentmanager/Improbable.Gdk.DeploymentManager.asmdef

Lines changed: 0 additions & 13 deletions
This file was deleted.

workers/unity/Packages/com.improbable.gdk.deploymentmanager/Improbable.Gdk.DeploymentManager.asmdef.meta

Lines changed: 0 additions & 7 deletions
This file was deleted.

workers/unity/Packages/com.improbable.gdk.deploymentmanager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.improbable.gdk.deploymentmanager",
33
"displayName": "SpatialOS GDK Deployment Manager",
4-
"version": "0.2.1",
4+
"version": "0.2.2",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Deployment Manager. Made by Improbable.",
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "com.improbable.gdk.guns",
33
"displayName": "SpatialOS GDK Guns",
4-
"version": "0.2.1",
4+
"version": "0.2.2",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Guns Module. Made by Improbable.",
88
"dependencies": {
9-
"com.improbable.gdk.core": "0.2.1",
10-
"com.improbable.gdk.standardtypes": "0.2.1",
11-
"com.improbable.gdk.objectpooling": "0.2.1"
9+
"com.improbable.gdk.core": "0.2.2",
10+
"com.improbable.gdk.standardtypes": "0.2.2",
11+
"com.improbable.gdk.objectpooling": "0.2.2"
1212
}
1313
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.improbable.gdk.health",
33
"displayName": "SpatialOS GDK Health",
4-
"version": "0.2.1",
4+
"version": "0.2.2",
55
"unity": "2018.3",
66
"author": "Improbable Worlds Ltd",
77
"description": "SpatialOS GDK Health Module. Made by Improbable.",
88
"dependencies": {
9-
"com.improbable.gdk.core": "0.2.1"
9+
"com.improbable.gdk.core": "0.2.2"
1010
}
1111
}

0 commit comments

Comments
 (0)