You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 18, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,10 @@
14
14
- This window also displays the entities that a worker has checked out.
15
15
- For each entity checked out, you can view the components on that entity and whether the worker is authoritative over that component.
16
16
- Each component can have an icon associated with it, set through a schema annotation. [#1385](https://github.com/spatialos/gdk-for-unity/pull/1385)
17
+
- Each component's data will also be rendered in the Worker Inspector, with the exception of `map<k, v>` fields. (This will come in a future release!) [#1387](https://github.com/spatialos/gdk-for-unity/pull/1387)[#1391](https://github.com/spatialos/gdk-for-unity/pull/1391)[#1392](https://github.com/spatialos/gdk-for-unity/pull/1392)[#1396](https://github.com/spatialos/gdk-for-unity/pull/1396)[#1401](https://github.com/spatialos/gdk-for-unity/pull/1401)
18
+
- Added two ways to instantiate valid `EntitySnapshot` objects. [#1401](https://github.com/spatialos/gdk-for-unity/pull/1401)
19
+
-`EntitySnapshot.Empty()` to create an empty `EntitySnapshot`
20
+
-`new EntitySnapshot(params ISpatialComponentSnapshot[] components)` to create and seed the `EntitySnapshot` with some data.
Copy file name to clipboardExpand all lines: workers/unity/Packages/io.improbable.gdk.debug/.codegen/Source/Generators/DebugExtensions/FieldTypeHandler.cs
+34-87
Original file line number
Diff line number
Diff line change
@@ -23,35 +23,13 @@ public string ToFieldDeclaration(UnityFieldDetails fieldDetails)
// TODO: Eliminate this case by supporting 'Entity'.
124
-
yieldbreak;
125
-
}
126
-
127
71
yieldreturn
128
-
$"{fieldDetails.CamelCaseName}Field = new PaginatedListView<{innerListType}, {listFieldType.ContainedType.FqnType}>(\"{Formatting.SnakeCaseToHumanReadable(fieldDetails.Name)}\", () => {{ var inner = new {innerListType}(\"\");";
129
-
130
-
// These lines are part of the func to create an inner list item.
0 commit comments