We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2340a32 commit 8dd7aa3Copy full SHA for 8dd7aa3
1 file changed
v3/src/state/Systems.js
@@ -105,6 +105,9 @@ Systems.prototype = {
105
106
step: function (time, delta)
107
{
108
+ // Are there any pending StateManager actions?
109
+ this.stateManager.update();
110
+
111
if (!this.settings.active)
112
113
return;
@@ -146,9 +149,6 @@ Systems.prototype = {
146
149
}
147
150
148
151
this.cameras.render(renderer, this.children, interpolation);
-
- // After everything has rendered are there any pending StateManager actions?
- this.stateManager.update();
152
},
153
154
sortZ: function (childA, childB)
0 commit comments