Skip to content

Commit

Permalink
Increased particle size for fire balls.
Browse files Browse the repository at this point in the history
  • Loading branch information
Casmo committed Aug 28, 2015
1 parent 2d010bd commit d352940
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BreakOut.EffectSparkles.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ BreakOut.EffectSparkles.prototype.init = function (settings) {
for (var i = 0; i < 5; i++) {
var child = new PIXI.Graphics();
child.beginFill(0xffffff, 1);
child.drawCircle(0, 0, Math.random() * 2);
child.drawCircle(0, 0, Math.random() * 5);
child.speedX = -2 + (Math.random() * 4);
child.speedY = -2 + (Math.random() * 4);

Expand Down
2 changes: 1 addition & 1 deletion src/BreakOut.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var BreakOut = {
* Game width and height
*/
settings: {
debug: false,
debug: (window.location.hash.indexOf('debug') >= 0),
width: 1280,
height: 720,
assetDir: 'assets/',
Expand Down

0 comments on commit d352940

Please sign in to comment.