-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed a warning which resulted from an ECB update system using the wr…
…ong UpdateAfter system
- Loading branch information
Showing
5 changed files
with
7 additions
and
9 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
Examples~/Hybrid Simulation Test Project/Packages/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Examples~/Hybrid Simulation Test Project/ProjectSettings/ProjectVersion.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
4 changes: 1 addition & 3 deletions
4
...cripts/Systems/Entity Command Buffer Systems/PostStartOfFrameEntityCommandBufferSystem.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 { } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters