├── .gitignore ├── README.md ├── alignTriangles.js ├── basic.html ├── fluffy_predator.html ├── glsl ├── basic_fs.glsl ├── basic_vs.glsl ├── envmap_fs.glsl ├── envmap_vs.glsl ├── fluffy_fs.glsl └── fluffy_vs.glsl ├── images ├── basic.jpg └── fluffy.png ├── main.js ├── models ├── predator.bin ├── predator.js ├── predator_65k.bin └── predator_65k.js ├── textures ├── env.png └── env2.jpg └── vendor ├── BinaryLoader.js ├── OrbitControls.js ├── assetsLoader.js └── three.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/README.md -------------------------------------------------------------------------------- /alignTriangles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/alignTriangles.js -------------------------------------------------------------------------------- /basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/basic.html -------------------------------------------------------------------------------- /fluffy_predator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/fluffy_predator.html -------------------------------------------------------------------------------- /glsl/basic_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/glsl/basic_fs.glsl -------------------------------------------------------------------------------- /glsl/basic_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/glsl/basic_vs.glsl -------------------------------------------------------------------------------- /glsl/envmap_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/glsl/envmap_fs.glsl -------------------------------------------------------------------------------- /glsl/envmap_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/glsl/envmap_vs.glsl -------------------------------------------------------------------------------- /glsl/fluffy_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/glsl/fluffy_fs.glsl -------------------------------------------------------------------------------- /glsl/fluffy_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/glsl/fluffy_vs.glsl -------------------------------------------------------------------------------- /images/basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/images/basic.jpg -------------------------------------------------------------------------------- /images/fluffy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/images/fluffy.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/main.js -------------------------------------------------------------------------------- /models/predator.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/models/predator.bin -------------------------------------------------------------------------------- /models/predator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/models/predator.js -------------------------------------------------------------------------------- /models/predator_65k.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/models/predator_65k.bin -------------------------------------------------------------------------------- /models/predator_65k.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/models/predator_65k.js -------------------------------------------------------------------------------- /textures/env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/textures/env.png -------------------------------------------------------------------------------- /textures/env2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/textures/env2.jpg -------------------------------------------------------------------------------- /vendor/BinaryLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/vendor/BinaryLoader.js -------------------------------------------------------------------------------- /vendor/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/vendor/OrbitControls.js -------------------------------------------------------------------------------- /vendor/assetsLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/vendor/assetsLoader.js -------------------------------------------------------------------------------- /vendor/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoptere/FluffyPredator/HEAD/vendor/three.min.js --------------------------------------------------------------------------------