Removed unused var

This commit is contained in:
Richard Davey 2024-09-05 09:46:55 +01:00
parent 57df739a68
commit 3c29f694ed

View file

@ -1191,7 +1191,7 @@ var World = new Class({
* @param {number} time - The current time. Either a High Resolution Timer value if it comes from Request Animation Frame, or Date.now if using SetTimeout.
* @param {number} delta - The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.
*/
update: function (time, delta)
update: function (time)
{
if (!this.enabled || !this.autoUpdate)
{