Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
QC20 committed May 10, 2024
1 parent 680bccf commit e9d7eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gameOfLife.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class Cell {

function setup() {
createCanvas(200, 200);
frameRate(2);
frameRate(20);

for (let i = 0; i < m_startCells; i++) {
cells[i] = new Cell(createVector(random(width + 1) - width / 2, random(height + 1) - height / 4));
Expand Down

0 comments on commit e9d7eaf

Please sign in to comment.