Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
letochagone authored Nov 18, 2024
1 parent 105621a commit d98714a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WebGL/etoiles/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const elem2 = document.createElement("pre");
elem2.textContent = 'I' ;
elem2.textContent = 'J' ;
document.body.appendChild(elem2);

/*
Expand Down Expand Up @@ -44,7 +44,7 @@ function touch(event) {
const x = (event.clientX / width) * 2 - 1;
const y = (event.clientY / height) * -2 + 1;
//remettre
if (!debug) _emitParticles(x, y);
if (!debug) emitParticles(x, y);
// console.log(millis);

}
Expand Down

0 comments on commit d98714a

Please sign in to comment.