threedollarbill Posted July 20, 2016 Share Posted July 20, 2016 Is there a difference between the two? Which one is recommended to use? this.game.make.tween(obj); // or this.game.add.tween(obj); Link to comment Share on other sites More sharing options...
SolitudeX Posted July 21, 2016 Share Posted July 21, 2016 The GameObjectFactory is a quick way to create many common game objects using game.add. Created objects are automatically added to the appropriate Manager, World, or manually specified parent Group. The GameObjectCreator is a quick way to create common game objects without adding them to the game world. The object creator can be accessed with game.make. VitaZheltyakov 1 Link to comment Share on other sites More sharing options...
Recommended Posts