https://github.com/eli-parker/galaxy-generator
A web development app which uses particles to generate a galaxy effect. This is a lesson which is a part of the ThreeJS Journey lesson which I've lightly modified.
https://github.com/eli-parker/galaxy-generator
javascript threejs-learning web-development
Last synced: about 1 year ago
JSON representation
A web development app which uses particles to generate a galaxy effect. This is a lesson which is a part of the ThreeJS Journey lesson which I've lightly modified.
- Host: GitHub
- URL: https://github.com/eli-parker/galaxy-generator
- Owner: Eli-Parker
- Created: 2024-04-29T20:18:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T20:08:32.000Z (over 1 year ago)
- Last Synced: 2025-02-12T05:13:27.684Z (over 1 year ago)
- Topics: javascript, threejs-learning, web-development
- Language: JavaScript
- Homepage: http://eliparker.dev/Galaxy-Generator/
- Size: 525 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Overview
This is a very pretty display of particle generation through three.js! It uses a debug menu with many options, and I've included a personal
touch in the debug menu with the ability to change the color of the particles, and to group these options by type.
# Three.js Journey
This code is a part of a lesson in the Three.JS Journey, which has been lightly modified to include some of my personal changes and menus.
All included code is owned by Three.JS Journey.
## Setup
Download [Node.js](https://nodejs.org/en/download/).
Run this followed commands:
``` bash
# Install dependencies (only the first time)
npm install
# Run the local server at localhost:8080
npm run dev
# Build for production in the dist/ directory
npm run build
```