We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fff7c4 commit 639e6a1Copy full SHA for 639e6a1
3 files changed
v3/src/camera/Camera.js
@@ -88,7 +88,7 @@ Camera.prototype = {
88
return this;
89
},
90
91
- update: function (delta)
+ update: function (timestep, delta)
92
{
93
if (this._flashAlpha > 0.0)
94
v3/src/checksum.js
@@ -1,4 +1,4 @@
1
var CHECKSUM = {
2
-build: '16384640-5308-11e7-8460-f5f1d2b80b32'
+build: '54effe90-54f3-11e7-845d-d91b54e9fe70'
3
};
4
module.exports = CHECKSUM;
v3/src/state/systems/CameraManager.js
@@ -88,11 +88,11 @@ CameraManager.prototype = {
this.main = this.add();
- update: function (timestep)
for (var i = 0, l = this.cameras.length; i < l; ++i)
95
- this.cameras[i].update(timestep);
+ this.cameras[i].update(timestep, delta);
96
}
97
98
0 commit comments