Skip to content

code4fukui/egxr.js

Repository files navigation

egxr.js

usage

<script type="module">
import { THREE, scene, camera, renderer } from "https://code4fukui.github.io/egxr.js/egxr.js";

const geo = new THREE.BoxGeometry(0.5, 1, 1.5);
const wireframe = true;
const mat = new THREE.MeshBasicMaterial({ color: 0xff0088, wireframe });
const mesh = new THREE.Mesh(geo, mat);
scene.add(mesh);

renderer.setAnimationLoop(() => {
	mesh.position.z = -2;
	mesh.rotation.y += .01;
	renderer.render(scene, camera);
});
</script>

lib

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published