├── .github └── FUNDING.yml ├── README.md ├── basics ├── particleSystem │ ├── assets │ │ ├── cloudNoise.jpg │ │ ├── cloudShape.jpg │ │ ├── dot.png │ │ ├── fbmNoise.png │ │ ├── flame.png │ │ ├── mario-sprite.png │ │ ├── message.html │ │ ├── perlinNoise.png │ │ ├── snowflake.png │ │ ├── starship.glb │ │ └── venice-sunset.hdr │ ├── components │ │ ├── cloud.js │ │ ├── drawcalls.js │ │ ├── environment-map.js │ │ ├── fireworks.js │ │ ├── galaxy.js │ │ ├── particle-system-explosion.js │ │ ├── particle-system-instanced.js │ │ ├── particle-system-naive-wireframe.js │ │ ├── particle-system-naive.js │ │ ├── particle-system-rocket-exhaust.js │ │ ├── particle-system-shell.js │ │ └── swap-entities.js │ └── index.html └── quad │ ├── assets │ ├── explosion.png │ ├── mario-sprite.png │ └── message.html │ ├── components │ ├── explosion-sprite-sheet.js │ ├── quad-texture.js │ ├── quad-wireframe.js │ ├── sprite-animation.js │ ├── sprite-strip.js │ └── uv-values.js │ └── index.html ├── index.html ├── js ├── components │ ├── info-message.js │ └── slideshow.js ├── systems │ └── wireframe.js └── vendor │ ├── OrbitControls.js │ ├── PMREMGenerator.js │ ├── RGBELoader.js │ ├── aframe-master.min.js │ └── aframe-master.min.js.map └── wind-waker ├── fire-dynamic ├── OrbitControls.js ├── index.html └── main.js ├── fire-static ├── OrbitControls.js ├── index.html └── main.js ├── water ├── assets │ ├── clouds.png │ ├── island.glb │ ├── king-of-red-lions.glb │ ├── message.html │ └── water.png ├── components │ ├── tile.js │ ├── tiles-animation.js │ ├── vignette-background.js │ ├── water-v1.js │ ├── water-v2.js │ ├── water-v3.js │ └── water.js └── index.html └── wind ├── aframe.html ├── components └── wind-v1.js ├── index.html └── main.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [dmarcos] 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/README.md -------------------------------------------------------------------------------- /basics/particleSystem/assets/cloudNoise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/cloudNoise.jpg -------------------------------------------------------------------------------- /basics/particleSystem/assets/cloudShape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/cloudShape.jpg -------------------------------------------------------------------------------- /basics/particleSystem/assets/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/dot.png -------------------------------------------------------------------------------- /basics/particleSystem/assets/fbmNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/fbmNoise.png -------------------------------------------------------------------------------- /basics/particleSystem/assets/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/flame.png -------------------------------------------------------------------------------- /basics/particleSystem/assets/mario-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/mario-sprite.png -------------------------------------------------------------------------------- /basics/particleSystem/assets/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/message.html -------------------------------------------------------------------------------- /basics/particleSystem/assets/perlinNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/perlinNoise.png -------------------------------------------------------------------------------- /basics/particleSystem/assets/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/snowflake.png -------------------------------------------------------------------------------- /basics/particleSystem/assets/starship.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/starship.glb -------------------------------------------------------------------------------- /basics/particleSystem/assets/venice-sunset.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/assets/venice-sunset.hdr -------------------------------------------------------------------------------- /basics/particleSystem/components/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/cloud.js -------------------------------------------------------------------------------- /basics/particleSystem/components/drawcalls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/drawcalls.js -------------------------------------------------------------------------------- /basics/particleSystem/components/environment-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/environment-map.js -------------------------------------------------------------------------------- /basics/particleSystem/components/fireworks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/fireworks.js -------------------------------------------------------------------------------- /basics/particleSystem/components/galaxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/galaxy.js -------------------------------------------------------------------------------- /basics/particleSystem/components/particle-system-explosion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/particle-system-explosion.js -------------------------------------------------------------------------------- /basics/particleSystem/components/particle-system-instanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/particle-system-instanced.js -------------------------------------------------------------------------------- /basics/particleSystem/components/particle-system-naive-wireframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/particle-system-naive-wireframe.js -------------------------------------------------------------------------------- /basics/particleSystem/components/particle-system-naive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/particle-system-naive.js -------------------------------------------------------------------------------- /basics/particleSystem/components/particle-system-rocket-exhaust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/particle-system-rocket-exhaust.js -------------------------------------------------------------------------------- /basics/particleSystem/components/particle-system-shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/particle-system-shell.js -------------------------------------------------------------------------------- /basics/particleSystem/components/swap-entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/components/swap-entities.js -------------------------------------------------------------------------------- /basics/particleSystem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/particleSystem/index.html -------------------------------------------------------------------------------- /basics/quad/assets/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/assets/explosion.png -------------------------------------------------------------------------------- /basics/quad/assets/mario-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/assets/mario-sprite.png -------------------------------------------------------------------------------- /basics/quad/assets/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/assets/message.html -------------------------------------------------------------------------------- /basics/quad/components/explosion-sprite-sheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/components/explosion-sprite-sheet.js -------------------------------------------------------------------------------- /basics/quad/components/quad-texture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/components/quad-texture.js -------------------------------------------------------------------------------- /basics/quad/components/quad-wireframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/components/quad-wireframe.js -------------------------------------------------------------------------------- /basics/quad/components/sprite-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/components/sprite-animation.js -------------------------------------------------------------------------------- /basics/quad/components/sprite-strip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/components/sprite-strip.js -------------------------------------------------------------------------------- /basics/quad/components/uv-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/components/uv-values.js -------------------------------------------------------------------------------- /basics/quad/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/basics/quad/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/index.html -------------------------------------------------------------------------------- /js/components/info-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/js/components/info-message.js -------------------------------------------------------------------------------- /js/components/slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/js/components/slideshow.js -------------------------------------------------------------------------------- /js/systems/wireframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/js/systems/wireframe.js -------------------------------------------------------------------------------- /js/vendor/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/js/vendor/OrbitControls.js -------------------------------------------------------------------------------- /js/vendor/PMREMGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/js/vendor/PMREMGenerator.js -------------------------------------------------------------------------------- /js/vendor/RGBELoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/js/vendor/RGBELoader.js -------------------------------------------------------------------------------- /js/vendor/aframe-master.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/js/vendor/aframe-master.min.js -------------------------------------------------------------------------------- /js/vendor/aframe-master.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/js/vendor/aframe-master.min.js.map -------------------------------------------------------------------------------- /wind-waker/fire-dynamic/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/fire-dynamic/OrbitControls.js -------------------------------------------------------------------------------- /wind-waker/fire-dynamic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/fire-dynamic/index.html -------------------------------------------------------------------------------- /wind-waker/fire-dynamic/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/fire-dynamic/main.js -------------------------------------------------------------------------------- /wind-waker/fire-static/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/fire-static/OrbitControls.js -------------------------------------------------------------------------------- /wind-waker/fire-static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/fire-static/index.html -------------------------------------------------------------------------------- /wind-waker/fire-static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/fire-static/main.js -------------------------------------------------------------------------------- /wind-waker/water/assets/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/assets/clouds.png -------------------------------------------------------------------------------- /wind-waker/water/assets/island.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/assets/island.glb -------------------------------------------------------------------------------- /wind-waker/water/assets/king-of-red-lions.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/assets/king-of-red-lions.glb -------------------------------------------------------------------------------- /wind-waker/water/assets/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/assets/message.html -------------------------------------------------------------------------------- /wind-waker/water/assets/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/assets/water.png -------------------------------------------------------------------------------- /wind-waker/water/components/tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/components/tile.js -------------------------------------------------------------------------------- /wind-waker/water/components/tiles-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/components/tiles-animation.js -------------------------------------------------------------------------------- /wind-waker/water/components/vignette-background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/components/vignette-background.js -------------------------------------------------------------------------------- /wind-waker/water/components/water-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/components/water-v1.js -------------------------------------------------------------------------------- /wind-waker/water/components/water-v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/components/water-v2.js -------------------------------------------------------------------------------- /wind-waker/water/components/water-v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/components/water-v3.js -------------------------------------------------------------------------------- /wind-waker/water/components/water.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/components/water.js -------------------------------------------------------------------------------- /wind-waker/water/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/water/index.html -------------------------------------------------------------------------------- /wind-waker/wind/aframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/wind/aframe.html -------------------------------------------------------------------------------- /wind-waker/wind/components/wind-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/wind/components/wind-v1.js -------------------------------------------------------------------------------- /wind-waker/wind/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/wind/index.html -------------------------------------------------------------------------------- /wind-waker/wind/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarcos/aframe-fx/HEAD/wind-waker/wind/main.js --------------------------------------------------------------------------------