leptos_three 0.0.0

A Leptos library for Three.js
Documentation
1
2
3
4
5
6
7
8
export function attachMaterial(object3d, r, g, b) {
  // color is from 0..1
  // create material from color and set object3d material
  const material = new THREE.MeshBasicMaterial({
    color: new THREE.Color(r, g, b),
  });
  object3d.material = material;
}