UNPKG

aframe

Version:

A web framework for building virtual reality experiences.

14 lines (11 loc) 340 B
import * as THREE from 'three'; import { registerGeometry } from '../core/geometry.js'; registerGeometry('icosahedron', { schema: { detail: {default: 0, min: 0, max: 5, type: 'int'}, radius: {default: 1, min: 0} }, init: function (data) { this.geometry = new THREE.IcosahedronGeometry(data.radius, data.detail); } });