Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit 6927912

Browse files
authored
UTY-2659: set different entt list version (#1432)
* set different entt list version * simplify * Update CHANGELOG.md
1 parent 5b43824 commit 6927912

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
- Added support for multiple annotations in Code Writer API. [#1427](https://github.com/spatialos/gdk-for-unity/pull/1427)
1212
- Prevent building workers with Unity Editor compile errors. [#1425](https://github.com/spatialos/gdk-for-unity/pull/1425)
1313

14+
### Fixed
15+
16+
- Fixed a bug where the entity list in the Worker Inspector does not refresh when switching to a worker with no entities checked out [#1432](https://github.com/spatialos/gdk-for-unity/pull/1432)
17+
1418
### Changed
1519

1620
- Upgrade to Worker SDK v14.7.0. [#1434](https://github.com/spatialos/gdk-for-unity/pull/1434)

workers/unity/Packages/io.improbable.gdk.debug/WorkerInspector/EntityList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void Update()
7070
public void SetWorld(World world)
7171
{
7272
entitySystem = world?.GetExistingSystem<EntitySystem>();
73-
lastViewVersion = 0;
73+
lastViewVersion = -1;
7474
selectedEntity = null;
7575

7676
entities.SetNewWorld(world);

0 commit comments

Comments
 (0)