From 2c4a697665fbca86637317ec7f437d485166134c Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Tue, 11 Apr 2017 02:48:55 +0100 Subject: [PATCH] Expose the GameObjectCreator. --- v3/src/state/Systems.js | 1 + 1 file changed, 1 insertion(+) diff --git a/v3/src/state/Systems.js b/v3/src/state/Systems.js index 771b351dd..66cbcbf48 100644 --- a/v3/src/state/Systems.js +++ b/v3/src/state/Systems.js @@ -102,6 +102,7 @@ Systems.prototype = { this.state.textures = this.textures; this.state.add = this.add; + this.state.make = this.make; this.state.cameras = this.cameras; this.state.events = this.events; this.state.load = this.load;