Skip to content

Commit

Permalink
completeing system jobs before calling Update on managed MonoBehaviours
Browse files Browse the repository at this point in the history
  • Loading branch information
tbg10101 committed Dec 8, 2020
1 parent c415eb1 commit 3224752
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"dependencies": {
"com.10101software.dots.hybridsimulation": "file:../../..",
"com.unity.ide.rider": "2.0.7",
"com.unity.render-pipelines.universal": "10.2.1",
"com.unity.render-pipelines.universal": "10.2.2",
"com.unity.ugui": "1.0.0",
"com.unity.modules.animation": "1.0.0",
"com.unity.modules.assetbundle": "1.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"url": "https://packages.unity.com"
},
"com.unity.render-pipelines.core": {
"version": "10.2.1",
"version": "10.2.2",
"depth": 1,
"source": "registry",
"dependencies": {
Expand All @@ -138,13 +138,13 @@
"url": "https://packages.unity.com"
},
"com.unity.render-pipelines.universal": {
"version": "10.2.1",
"version": "10.2.2",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.mathematics": "1.1.0",
"com.unity.render-pipelines.core": "10.2.1",
"com.unity.shadergraph": "10.2.1"
"com.unity.render-pipelines.core": "10.2.2",
"com.unity.shadergraph": "10.2.2"
},
"url": "https://packages.unity.com"
},
Expand Down Expand Up @@ -176,11 +176,11 @@
"url": "https://packages.unity.com"
},
"com.unity.shadergraph": {
"version": "10.2.1",
"version": "10.2.2",
"depth": 1,
"source": "registry",
"dependencies": {
"com.unity.render-pipelines.core": "10.2.1",
"com.unity.render-pipelines.core": "10.2.2",
"com.unity.searcher": "4.3.1"
},
"url": "https://packages.unity.com"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
namespace Software10101.DOTS.Systems {
internal sealed class ManagedMonoBehaviourUpdateSystem : SystemBase {
protected override void OnUpdate() {
Dependency.Complete();
ManagedMonoBehaviour.DoUpdate();
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.10101software.dots.hybridsimulation",
"description": "A framework for using FixedUpdate in a simulation world which is linked to a GameObject-based presentation layer.",
"version": "0.7.1",
"version": "0.7.2",
"unity": "2020.2",
"displayName": "DOTS Hybrid Simulation Worlds",
"dependencies": {
Expand Down

0 comments on commit 3224752

Please sign in to comment.