You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
import {
|
|
BoxGeometry,
|
|
PlaneGeometry,
|
|
MeshLambertMaterial,
|
|
Mesh,
|
|
TextureLoader,
|
|
} from "three";
|
|
|
|
export function createTerrain(props) {
|
|
const loader = new TextureLoader();
|
|
const height = loader.load("img/textures/forest-floor.png");
|
|
// w h
|
|
const geometry = new PlaneGeometry(props.width, props.height, 64, 64);
|
|
|
|
const material = new MeshLambertMaterial({
|
|
color: props.color,
|
|
flatShading: true,
|
|
map: height,
|
|
//displacementMap: height,
|
|
//displacementScale: 5,
|
|
});
|
|
|
|
const plane = new Mesh(geometry, material);
|
|
plane.position.set(0, 0, 0);
|
|
plane.rotation.x -= Math.PI * 0.5;
|
|
|
|
//Storing our original vertices position on a new attribute
|
|
plane.geometry.attributes.position.originalPosition =
|
|
plane.geometry.attributes.position.array;
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
plane.tick = () => {};
|
|
|
|
return plane;
|
|
}
|
|
|
|
export function createCube(xPos, yPos, zPos, x, y, z) {
|
|
const geometry = new BoxGeometry(x, y, z);
|
|
const material = new MeshLambertMaterial({ color: 0xff0000 });
|
|
const cube = new Mesh(geometry, material);
|
|
cube.position.set(xPos, yPos, zPos);
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
cube.tick = () => {};
|
|
return cube;
|
|
}
|
|
|