Skip to content

Commit

Permalink
hmm
Browse files Browse the repository at this point in the history
  • Loading branch information
v01dMage authored Apr 3, 2024
1 parent b4fa96b commit dfb110d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
import { XRControllerModelFactory } from 'three/addons/webxr/XRControllerModelFactory.js';


function Test(f){
function Test(tf){
let result= document.createElement('p');
result.innerHTML= f()?"<p>true</p>":"<p>false</p>";
result.innerHTML= String(tf);
document.body.appendChild( result );
}

Expand All @@ -36,7 +36,7 @@
let controllerGrip1, controllerGrip2;


Test(()=>{ return false; });
Test(false);

// init();
// animate();
Expand Down

0 comments on commit dfb110d

Please sign in to comment.