add the other activity envisioned on the home page (though not sending data yet)

This commit is contained in:
2023-06-22 20:51:06 -06:00
parent 07e7a70d56
commit aa2f484a9f
8 changed files with 138 additions and 11 deletions

View File

@@ -2,7 +2,7 @@ import { PlaneGeometry, MeshLambertMaterial, Mesh, TextureLoader } from "three";
export function createTerrain(props) {
const loader = new TextureLoader();
const height = loader.load("img/textures/forest-floor.png");
const height = loader.load("img/textures/leafy-autumn-forest-floor.jpg");
// w h
const geometry = new PlaneGeometry(props.width, props.height, 64, 64);