Skip to content

Commit 4dbe015

Browse files
authored
Merge pull request phaserjs#3058 from igorpetushkov/ph4
Fix 'scene is not defined' in GroupCreator
2 parents 7a129bb + 762d80f commit 4dbe015

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v3/src/gameobjects/group/GroupCreator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ var Group = require('./Group');
55

66
GameObjectCreator.register('group', function (config)
77
{
8-
return new Group(scene, null, config);
8+
return new Group(this.scene, null, config);
99
});

0 commit comments

Comments
 (0)