https://github.com/jasonsturges/three-low-poly
Low poly modeling for Three.js
https://github.com/jasonsturges/three-low-poly
3d low-poly modeling models npm package threejs
Last synced: 3 months ago
JSON representation
Low poly modeling for Three.js
- Host: GitHub
- URL: https://github.com/jasonsturges/three-low-poly
- Owner: jasonsturges
- Created: 2024-10-27T05:14:57.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-12-03T07:50:59.000Z (7 months ago)
- Last Synced: 2025-04-10T12:17:15.595Z (3 months ago)
- Topics: 3d, low-poly, modeling, models, npm, package, threejs
- Language: TypeScript
- Homepage: https://jasonsturges.com/three-low-poly/
- Size: 1.13 MB
- Stars: 24
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Three.js Low Poly
Procedurally generated low poly modeling for Three.js.

_Example Library scene_## Getting Started
To install, execute:
```shell
npm i three-low-poly
```Then, import into a project and use as:
```js
import { MossyRocks } from "three-low-poly";const rocks = new MossyRocks();
scene.add(rocks);
```See the [examples](https://jasonsturges.com/three-low-poly/) for more information.

_Example Graveyard scene_## Usage
Assets are procedurally generated and customizable through parameters, typically based on a core geometry that combines a mesh with a material.
Alongside these geometries, there are prefabricated models that can be added directly to the scene, as well as factory methods for bulk creation.