edus101 Posted September 11, 2018 Share Posted September 11, 2018 How can one create group sprite at intervals? Here is my code <code> function createPlate() { this.add.group ({ key: 'goodPlate', repeat: 4, setXY: { x: 70, y: 100, stepX: 120, stepY: 20 } }); } this.time.events.loop(3000, createPlate, this); </code> Link to comment Share on other sites More sharing options...
Recommended Posts