├── .gitignore ├── LICENSE ├── README.md ├── assets ├── images │ ├── bricks │ │ ├── brick_bump.jpg │ │ ├── brick_diffuse.jpg │ │ └── brick_roughness.jpg │ ├── decal │ │ ├── decal-diffuse.png │ │ ├── decal-normal.jpg │ │ └── license.txt │ ├── envmap │ │ ├── 2294472375_24a3b8ef46_o.jpg │ │ └── envmap.png │ ├── illustration │ │ └── 758px-Canestra_di_frutta_(Caravaggio).jpg │ ├── license.txt │ ├── minecraft │ │ ├── atlas.png │ │ ├── dirt.png │ │ ├── grass.png │ │ ├── grass_dirt.png │ │ └── license.txt │ ├── noise │ │ ├── disturb.jpg │ │ ├── perlin-512.png │ │ ├── water.jpg │ │ └── waternormals.jpg │ ├── particles │ │ ├── hexangle.png │ │ ├── hexangle.txt │ │ └── lensflare_rome │ │ │ ├── lensflare0.png │ │ │ ├── lensflare1.png │ │ │ ├── lensflare2.png │ │ │ ├── lensflare3.png │ │ │ └── license.txt │ ├── reflection │ │ └── metal.jpg │ ├── space │ │ ├── earth_atmos_2048.jpg │ │ ├── earth_atmos_4096.jpg │ │ ├── earth_clouds_1024.png │ │ ├── earth_clouds_2048.png │ │ ├── earth_lights_2048.png │ │ ├── earth_normal_2048.jpg │ │ ├── earth_specular_2048.jpg │ │ └── moon_1024.jpg │ ├── terrain │ │ ├── backgrounddetailed6.jpg │ │ ├── grasslight-big-nm.jpg │ │ ├── grasslight-big.jpg │ │ └── license.txt │ ├── uvgrid │ │ ├── UV_Grid_Lrg.jpg │ │ ├── UV_Grid_Sm.jpg │ │ └── license.txt │ └── wood │ │ ├── crate.gif │ │ ├── hardwood2_bump.jpg │ │ ├── hardwood2_diffuse.jpg │ │ └── hardwood2_roughness.jpg ├── models │ ├── license.txt │ └── m │ │ ├── m.blend │ │ ├── m.mtl │ │ └── m.obj └── thumbs │ └── images │ ├── bricksbrick_bump.jpg │ ├── bricksbrick_diffuse.jpg │ ├── bricksbrick_roughness.jpg │ ├── decaldecal-diffuse.png │ ├── decaldecal-normal.jpg │ ├── envmap2294472375_24a3b8ef46_o.jpg │ ├── envmapenvmap.png │ ├── illustration758px-Canestra_di_frutta_(Caravaggio).jpg │ ├── minecraftatlas.png │ ├── minecraftdirt.png │ ├── minecraftgrass.png │ ├── minecraftgrass_dirt.png │ ├── noisedisturb.jpg │ ├── noiseperlin-512.png │ ├── noisewater.jpg │ ├── noisewaternormals.jpg │ ├── particleshexangle.png │ ├── particleslensflare_romelensflare0.png │ ├── particleslensflare_romelensflare1.png │ ├── particleslensflare_romelensflare2.png │ ├── particleslensflare_romelensflare3.png │ ├── reflectionmetal.jpg │ ├── spaceearth_atmos_2048.jpg │ ├── spaceearth_atmos_4096.jpg │ ├── spaceearth_clouds_1024.png │ ├── spaceearth_clouds_2048.png │ ├── spaceearth_lights_2048.png │ ├── spaceearth_normal_2048.jpg │ ├── spaceearth_specular_2048.jpg │ ├── spacemoon_1024.jpg │ ├── terrainbackgrounddetailed6.jpg │ ├── terraingrasslight-big-nm.jpg │ ├── terraingrasslight-big.jpg │ ├── uvgridUV_Grid_Lrg.jpg │ ├── uvgridUV_Grid_Sm.jpg │ ├── woodcrate.gif │ ├── woodhardwood2_bump.jpg │ ├── woodhardwood2_diffuse.jpg │ └── woodhardwood2_roughness.jpg ├── dist └── images.json ├── package.json └── scripts └── build.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .cache 3 | node_modules 4 | npm-debug.log* 5 | build/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/bricks/brick_bump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/bricks/brick_bump.jpg -------------------------------------------------------------------------------- /assets/images/bricks/brick_diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/bricks/brick_diffuse.jpg -------------------------------------------------------------------------------- /assets/images/bricks/brick_roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/bricks/brick_roughness.jpg -------------------------------------------------------------------------------- /assets/images/decal/decal-diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/decal/decal-diffuse.png -------------------------------------------------------------------------------- /assets/images/decal/decal-normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/decal/decal-normal.jpg -------------------------------------------------------------------------------- /assets/images/decal/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/decal/license.txt -------------------------------------------------------------------------------- /assets/images/envmap/2294472375_24a3b8ef46_o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/envmap/2294472375_24a3b8ef46_o.jpg -------------------------------------------------------------------------------- /assets/images/envmap/envmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/envmap/envmap.png -------------------------------------------------------------------------------- /assets/images/illustration/758px-Canestra_di_frutta_(Caravaggio).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/illustration/758px-Canestra_di_frutta_(Caravaggio).jpg -------------------------------------------------------------------------------- /assets/images/license.txt: -------------------------------------------------------------------------------- 1 | MIT Three.js project 2 | -------------------------------------------------------------------------------- /assets/images/minecraft/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/minecraft/atlas.png -------------------------------------------------------------------------------- /assets/images/minecraft/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/minecraft/dirt.png -------------------------------------------------------------------------------- /assets/images/minecraft/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/minecraft/grass.png -------------------------------------------------------------------------------- /assets/images/minecraft/grass_dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/minecraft/grass_dirt.png -------------------------------------------------------------------------------- /assets/images/minecraft/license.txt: -------------------------------------------------------------------------------- 1 | http://painterlypack.net/ 2 | -------------------------------------------------------------------------------- /assets/images/noise/disturb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/noise/disturb.jpg -------------------------------------------------------------------------------- /assets/images/noise/perlin-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/noise/perlin-512.png -------------------------------------------------------------------------------- /assets/images/noise/water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/noise/water.jpg -------------------------------------------------------------------------------- /assets/images/noise/waternormals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/noise/waternormals.jpg -------------------------------------------------------------------------------- /assets/images/particles/hexangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/particles/hexangle.png -------------------------------------------------------------------------------- /assets/images/particles/hexangle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/particles/hexangle.txt -------------------------------------------------------------------------------- /assets/images/particles/lensflare_rome/lensflare0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/particles/lensflare_rome/lensflare0.png -------------------------------------------------------------------------------- /assets/images/particles/lensflare_rome/lensflare1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/particles/lensflare_rome/lensflare1.png -------------------------------------------------------------------------------- /assets/images/particles/lensflare_rome/lensflare2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/particles/lensflare_rome/lensflare2.png -------------------------------------------------------------------------------- /assets/images/particles/lensflare_rome/lensflare3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/particles/lensflare_rome/lensflare3.png -------------------------------------------------------------------------------- /assets/images/particles/lensflare_rome/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/particles/lensflare_rome/license.txt -------------------------------------------------------------------------------- /assets/images/reflection/metal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/reflection/metal.jpg -------------------------------------------------------------------------------- /assets/images/space/earth_atmos_2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/space/earth_atmos_2048.jpg -------------------------------------------------------------------------------- /assets/images/space/earth_atmos_4096.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/space/earth_atmos_4096.jpg -------------------------------------------------------------------------------- /assets/images/space/earth_clouds_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/space/earth_clouds_1024.png -------------------------------------------------------------------------------- /assets/images/space/earth_clouds_2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/space/earth_clouds_2048.png -------------------------------------------------------------------------------- /assets/images/space/earth_lights_2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/space/earth_lights_2048.png -------------------------------------------------------------------------------- /assets/images/space/earth_normal_2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/space/earth_normal_2048.jpg -------------------------------------------------------------------------------- /assets/images/space/earth_specular_2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/space/earth_specular_2048.jpg -------------------------------------------------------------------------------- /assets/images/space/moon_1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/space/moon_1024.jpg -------------------------------------------------------------------------------- /assets/images/terrain/backgrounddetailed6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/terrain/backgrounddetailed6.jpg -------------------------------------------------------------------------------- /assets/images/terrain/grasslight-big-nm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/terrain/grasslight-big-nm.jpg -------------------------------------------------------------------------------- /assets/images/terrain/grasslight-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/terrain/grasslight-big.jpg -------------------------------------------------------------------------------- /assets/images/terrain/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/terrain/license.txt -------------------------------------------------------------------------------- /assets/images/uvgrid/UV_Grid_Lrg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/uvgrid/UV_Grid_Lrg.jpg -------------------------------------------------------------------------------- /assets/images/uvgrid/UV_Grid_Sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/uvgrid/UV_Grid_Sm.jpg -------------------------------------------------------------------------------- /assets/images/uvgrid/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/uvgrid/license.txt -------------------------------------------------------------------------------- /assets/images/wood/crate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/wood/crate.gif -------------------------------------------------------------------------------- /assets/images/wood/hardwood2_bump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/wood/hardwood2_bump.jpg -------------------------------------------------------------------------------- /assets/images/wood/hardwood2_diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/wood/hardwood2_diffuse.jpg -------------------------------------------------------------------------------- /assets/images/wood/hardwood2_roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/images/wood/hardwood2_roughness.jpg -------------------------------------------------------------------------------- /assets/models/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/models/license.txt -------------------------------------------------------------------------------- /assets/models/m/m.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/models/m/m.blend -------------------------------------------------------------------------------- /assets/models/m/m.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/models/m/m.mtl -------------------------------------------------------------------------------- /assets/models/m/m.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/models/m/m.obj -------------------------------------------------------------------------------- /assets/thumbs/images/bricksbrick_bump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/bricksbrick_bump.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/bricksbrick_diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/bricksbrick_diffuse.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/bricksbrick_roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/bricksbrick_roughness.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/decaldecal-diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/decaldecal-diffuse.png -------------------------------------------------------------------------------- /assets/thumbs/images/decaldecal-normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/decaldecal-normal.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/envmap2294472375_24a3b8ef46_o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/envmap2294472375_24a3b8ef46_o.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/envmapenvmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/envmapenvmap.png -------------------------------------------------------------------------------- /assets/thumbs/images/illustration758px-Canestra_di_frutta_(Caravaggio).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/illustration758px-Canestra_di_frutta_(Caravaggio).jpg -------------------------------------------------------------------------------- /assets/thumbs/images/minecraftatlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/minecraftatlas.png -------------------------------------------------------------------------------- /assets/thumbs/images/minecraftdirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/minecraftdirt.png -------------------------------------------------------------------------------- /assets/thumbs/images/minecraftgrass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/minecraftgrass.png -------------------------------------------------------------------------------- /assets/thumbs/images/minecraftgrass_dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/minecraftgrass_dirt.png -------------------------------------------------------------------------------- /assets/thumbs/images/noisedisturb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/noisedisturb.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/noiseperlin-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/noiseperlin-512.png -------------------------------------------------------------------------------- /assets/thumbs/images/noisewater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/noisewater.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/noisewaternormals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/noisewaternormals.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/particleshexangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/particleshexangle.png -------------------------------------------------------------------------------- /assets/thumbs/images/particleslensflare_romelensflare0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/particleslensflare_romelensflare0.png -------------------------------------------------------------------------------- /assets/thumbs/images/particleslensflare_romelensflare1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/particleslensflare_romelensflare1.png -------------------------------------------------------------------------------- /assets/thumbs/images/particleslensflare_romelensflare2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/particleslensflare_romelensflare2.png -------------------------------------------------------------------------------- /assets/thumbs/images/particleslensflare_romelensflare3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/particleslensflare_romelensflare3.png -------------------------------------------------------------------------------- /assets/thumbs/images/reflectionmetal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/reflectionmetal.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/spaceearth_atmos_2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/spaceearth_atmos_2048.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/spaceearth_atmos_4096.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/spaceearth_atmos_4096.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/spaceearth_clouds_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/spaceearth_clouds_1024.png -------------------------------------------------------------------------------- /assets/thumbs/images/spaceearth_clouds_2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/spaceearth_clouds_2048.png -------------------------------------------------------------------------------- /assets/thumbs/images/spaceearth_lights_2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/spaceearth_lights_2048.png -------------------------------------------------------------------------------- /assets/thumbs/images/spaceearth_normal_2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/spaceearth_normal_2048.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/spaceearth_specular_2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/spaceearth_specular_2048.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/spacemoon_1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/spacemoon_1024.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/terrainbackgrounddetailed6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/terrainbackgrounddetailed6.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/terraingrasslight-big-nm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/terraingrasslight-big-nm.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/terraingrasslight-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/terraingrasslight-big.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/uvgridUV_Grid_Lrg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/uvgridUV_Grid_Lrg.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/uvgridUV_Grid_Sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/uvgridUV_Grid_Sm.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/woodcrate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/woodcrate.gif -------------------------------------------------------------------------------- /assets/thumbs/images/woodhardwood2_bump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/woodhardwood2_bump.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/woodhardwood2_diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/woodhardwood2_diffuse.jpg -------------------------------------------------------------------------------- /assets/thumbs/images/woodhardwood2_roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/assets/thumbs/images/woodhardwood2_roughness.jpg -------------------------------------------------------------------------------- /dist/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/dist/images.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aframevr/sample-assets/HEAD/scripts/build.js --------------------------------------------------------------------------------