Skip to content
This repository was archived by the owner on Dec 5, 2018. It is now read-only.

Commit 420b760

Browse files
committed
upgraded to SpatialOS 11.0.0
1 parent 1fb7cab commit 420b760

24 files changed

+91
-96
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This is a SpatialOS starter project with useful core features that you can exten
1313

1414
It contains:
1515

16-
* A Player spawned on client connection as per the [Unity Client Lifecycle Guide](https://spatialos.improbable.io/docs/reference/latest/tutorials/client-lifecycle).
16+
* A Player spawned on client connection as per the [Unity Client Lifecycle Guide](https://spatialos.improbable.io/docs/reference/latest/tutorials/unity-client-lifecycle).
1717
* A Cube spawned through a snapshot via an entity template method and an Unity prefab.
1818
* The rest of the features included in the [BlankProject](https://github.com/spatialos/BlankProject).
1919

default_launch.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,18 @@
1919
}
2020
},
2121
"permissions": [{
22-
"all": {}
22+
"entity_creation": {
23+
"allow": true
24+
},
25+
"entity_deletion": {
26+
"allow": true
27+
},
28+
"entity_query": {
29+
"allow": true,
30+
"components": [
31+
"*"
32+
]
33+
}
2334
}]
2435
},
2536
{
@@ -33,9 +44,7 @@
3344
},
3445
"entity_query": {
3546
"allow": true,
36-
"components": [
37-
"*"
38-
]
47+
"components": []
3948
}
4049
}]
4150
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package improbable.core;
2+
3+
import "improbable/core/Quaternion.schema";
4+
5+
component Rotation {
6+
id = 1000;
7+
improbable.core.Quaternion rotation = 1;
8+
}

schema/improbable/core/WorldTransform.schema

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

snapshots/default.snapshot

13 Bytes
Binary file not shown.

snapshots/initial_world.snapshot

-111 Bytes
Binary file not shown.

spatialos.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "your_project_name_here",
33
"project_version": "1.0.0",
4-
"sdk_version": "10.4.1",
4+
"sdk_version": "11.0.0",
55
"dependencies": [
6-
{"name": "WorkerSdkSchema", "version": "10.4.1"}
6+
{"name": "standard_library", "version": "11.0.0"}
77
]
88
}

workers/gsim/.gitignore

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

workers/gsim/spatialos.gsim.worker.json

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

workers/gsim/src/main/scala/DummyMain.scala

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

0 commit comments

Comments
 (0)