An open API service indexing awesome lists of open source software.

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.

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
```