Skip to content

ThreeJS Particle Experiments - breakout from my ThreeExperiments repo - more info coming soon!

Notifications You must be signed in to change notification settings

pjkarlik/ThreeParticleDrift

Repository files navigation

travis ci build webpack3 version

ThreeJS Particle Drifting

Various demos and experiments with particles and particle systems. This repository is a working playground using THREE.js to create dynamic visuals.

Example Links:

/src/Three.js is the import file that combines all required Three.js package files into a window global.

import * as THREE from 'three'; // build/three.js from node_module/three
window.THREE = THREE;
require('three/examples/js/controls/OrbitControls.js');
require('three/examples/js/shaders/FresnelShader');
// ...etc for other items like Render Passes and Shaders

how to load files and view demos.

src/index.js
// Import Render class from file //
import Render from './ParticleXXX/index-XXX.js';

window.onload = () => {
  const demo = new Render();
  return demo;
};

Run the example

Requires Node v8.9.2 or greater

$ yarn install
$ yarn dev 

Then open http://localhost:2020

About

ThreeJS Particle Experiments - breakout from my ThreeExperiments repo - more info coming soon!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published