Dolan Posted November 27, 2015 Share Posted November 27, 2015 Is it possible to emit POLYGON particles in Phaser? All I can see is SPRITE emitters. Look at the example below from the official Phaser website:function preload() { game.load.image('diamond', 'assets/sprites/diamond.png');}function create() { game.physics.startSystem(Phaser.Physics.ARCADE); emitter = game.add.emitter(0, 0, 100); emitter.makeParticles('diamond'); emitter.gravity = 200;}'diamond' is the key name of the Sprite. Link to comment Share on other sites More sharing options...
Recommended Posts