We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd53268 commit b040146Copy full SHA for b040146
1 file changed
src/scene/SceneManager.js
@@ -1032,19 +1032,14 @@ var SceneManager = new Class({
1032
1033
if (!scene)
1034
{
1035
- var isFound = false;
1036
for (var i = 0; i < this._pending.length; i++)
1037
1038
if (this._pending[i].key === key)
1039
1040
- isFound = true;
+ this.queueOp('start', key, data);
1041
break;
1042
}
1043
1044
- if (isFound)
1045
- {
1046
- this.queueOp('start', key, data);
1047
- }
1048
return this;
1049
1050
0 commit comments