Skip to content

Commit

Permalink
3.2.21
Browse files Browse the repository at this point in the history
  • Loading branch information
quinton-ashley committed Dec 6, 2022
1 parent 366b86b commit 7890a3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion p5.play.js
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ p5.prototype.registerMethod('init', function p5PlayInit() {
this.color ??= this.p.color(this.p.random(30, 245), this.p.random(30, 245), this.p.random(30, 245));

this.textColor ??= this.p.color(0);
this.textSize ??= this.tileSize == 1 ? this.p.textSize() : 0.8;
this.textSize ??= this.tileSize == 1 ? (this.p.canvas ? this.p.textSize() : 12) : 0.8;

let shouldCreateSensor = false;
for (let g of this.groups) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
"version": "git add -A",
"postversion": "git push"
},
"version": "3.2.20"
"version": "3.2.21"
}

0 comments on commit 7890a3d

Please sign in to comment.