Skip to content

Commit

Permalink
disabled debug box
Browse files Browse the repository at this point in the history
  • Loading branch information
beanieboi committed Dec 11, 2011
1 parent 399ff78 commit 5a869c6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Bull.pde
Expand Up @@ -39,12 +39,12 @@ class Bull extends BoundingBox{
PImage bullImg = nextFrameImage();
w = bullImg.width/1.5;
h = bullImg.height/1.5;
stroke(204, 102, 0);
noFill();
rectMode(CENTER);
rect(x, y, w, h);
//stroke(204, 102, 0);
//noFill();
//rectMode(CENTER);
//rect(x, y, w, h);
imageMode(CENTER);
image(bullImg, this.x, this.y, w,h);
noStroke();
//noStroke();
}
}

0 comments on commit 5a869c6

Please sign in to comment.