UNPKG

awatif-ui

Version:

Awatif User Interface

11 lines (7 loc) 267 B
import * as THREE from "three"; export function grid(gridSize: number): THREE.GridHelper { const grid = new THREE.GridHelper(gridSize, 20, 0x404040, 0x404040); grid.position.set(0.5 * gridSize, 0.5 * gridSize, 0); grid.rotateX(Math.PI / 2); return grid; }