Files
portfolio/src/objects/ground.js
2023-11-10 11:08:55 +01:00

11 lines
267 B
JavaScript

//ground
import * as THREE from 'three';
export function createGround() {
const geometry = new THREE.PlaneGeometry(10, 10);
const material = new THREE.MeshBasicMaterial({ color: 0xa3c973 });
const plane = new THREE.Mesh(geometry, material);
return plane;
}