From ccf19cdc9bfb7e05fa4328704198a1e49c43ba07 Mon Sep 17 00:00:00 2001 From: Tristan Bellman-Greenwood Date: Sat, 23 Nov 2024 18:27:34 -0500 Subject: [PATCH] fixed a warning which resulted from an ECB update system using the wrong UpdateAfter system --- .../Hybrid Simulation Test Project/Packages/manifest.json | 2 +- .../Packages/packages-lock.json | 4 ++-- .../ProjectSettings/ProjectVersion.txt | 4 ++-- .../PostStartOfFrameEntityCommandBufferSystem.cs | 4 +--- package.json | 2 +- 5 files changed, 7 insertions(+), 9 deletions(-) diff --git a/Examples~/Hybrid Simulation Test Project/Packages/manifest.json b/Examples~/Hybrid Simulation Test Project/Packages/manifest.json index 71df981..cea71cc 100755 --- a/Examples~/Hybrid Simulation Test Project/Packages/manifest.json +++ b/Examples~/Hybrid Simulation Test Project/Packages/manifest.json @@ -1,7 +1,7 @@ { "dependencies": { "com.10101software.dots.hybridsimulation": "file:../../..", - "com.unity.ide.rider": "3.0.31", + "com.unity.ide.rider": "3.0.34", "com.unity.ide.visualstudio": "2.0.22", "com.unity.ide.vscode": "1.2.5", "com.unity.inputsystem": "1.11.2", diff --git a/Examples~/Hybrid Simulation Test Project/Packages/packages-lock.json b/Examples~/Hybrid Simulation Test Project/Packages/packages-lock.json index 72bde44..5894495 100755 --- a/Examples~/Hybrid Simulation Test Project/Packages/packages-lock.json +++ b/Examples~/Hybrid Simulation Test Project/Packages/packages-lock.json @@ -60,7 +60,7 @@ "url": "https://packages.unity.com" }, "com.unity.ide.rider": { - "version": "3.0.31", + "version": "3.0.34", "depth": 0, "source": "registry", "dependencies": { @@ -146,7 +146,7 @@ } }, "com.unity.scriptablebuildpipeline": { - "version": "1.21.24", + "version": "1.21.25", "depth": 2, "source": "registry", "dependencies": {}, diff --git a/Examples~/Hybrid Simulation Test Project/ProjectSettings/ProjectVersion.txt b/Examples~/Hybrid Simulation Test Project/ProjectSettings/ProjectVersion.txt index 8fb87e6..ba6dfe7 100644 --- a/Examples~/Hybrid Simulation Test Project/ProjectSettings/ProjectVersion.txt +++ b/Examples~/Hybrid Simulation Test Project/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 2022.3.50f1 -m_EditorVersionWithRevision: 2022.3.50f1 (c3db7f8bf9b1) +m_EditorVersion: 2022.3.53f1 +m_EditorVersionWithRevision: 2022.3.53f1 (df4e529d20d3) diff --git a/Runtime/Scripts/Systems/Entity Command Buffer Systems/PostStartOfFrameEntityCommandBufferSystem.cs b/Runtime/Scripts/Systems/Entity Command Buffer Systems/PostStartOfFrameEntityCommandBufferSystem.cs index 18b2b7a..f1981c2 100644 --- a/Runtime/Scripts/Systems/Entity Command Buffer Systems/PostStartOfFrameEntityCommandBufferSystem.cs +++ b/Runtime/Scripts/Systems/Entity Command Buffer Systems/PostStartOfFrameEntityCommandBufferSystem.cs @@ -1,8 +1,6 @@ -using Software10101.DOTS.Systems.Groups; using Unity.Entities; namespace Software10101.DOTS.Systems.EntityCommandBufferSystems { - [UpdateInGroup(typeof(SimulationSystemGroup))] - [UpdateAfter(typeof(SimulationMainSystemGroup))] + [UpdateInGroup(typeof(InitializationSystemGroup))] public sealed partial class PostStartOfFrameEntityCommandBufferSystem : EntityCommandBufferSystem { } } diff --git a/package.json b/package.json index 17c95cb..f588765 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "com.10101software.dots.hybridsimulation", "displayName": "DOTS Hybrid Simulation Worlds", "description": "A framework for using FixedUpdate in a simulation world which is linked to a GameObject-based presentation layer.", - "version": "1.3.2", + "version": "1.3.3", "unity": "2022.3", "dependencies": { "com.unity.entities": "1.3.5"