123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>three.js webgl - materials - compressed textures</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
- <link type="text/css" rel="stylesheet" href="main.css">
- </head>
- <body>
- <div id="info">
- <a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> - webgl - PVR compressed textures
- </div>
- <script type="module">
- import * as THREE from '../build/three.module.js';
- import { PVRLoader } from './jsm/loaders/PVRLoader.js';
- var camera, scene, renderer;
- var meshes = [];
- init();
- animate();
- function init() {
- camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 2000 );
- camera.position.z = 1000;
- scene = new THREE.Scene();
- var geometry = new THREE.BoxBufferGeometry( 200, 200, 200 );
- //
- var onCube1Loaded = function ( texture ) {
- texture.magFilter = THREE.LinearFilter;
- texture.minFilter = THREE.LinearFilter;
- texture.mapping = THREE.CubeReflectionMapping;
- material6.needsUpdate = true;
- };
- var onCube2Loaded = function ( texture ) {
- texture.magFilter = THREE.LinearFilter;
- // texture.minFilter = LinearMipmapNearestFilter;
- texture.minFilter = THREE.LinearFilter;
- texture.mapping = THREE.CubeReflectionMapping;
- material8.needsUpdate = true;
- };
- //
- var loader = new PVRLoader();
- var disturb_4bpp_rgb = loader.load( 'textures/compressed/disturb_4bpp_rgb.pvr' );
- var disturb_4bpp_rgb_v3 = loader.load( 'textures/compressed/disturb_4bpp_rgb_v3.pvr' );
- var disturb_4bpp_rgb_mips = loader.load( 'textures/compressed/disturb_4bpp_rgb_mips.pvr' );
- var disturb_2bpp_rgb = loader.load( 'textures/compressed/disturb_2bpp_rgb.pvr' );
- var flare_4bpp_rgba = loader.load( 'textures/compressed/flare_4bpp_rgba.pvr' );
- var flare_2bpp_rgba = loader.load( 'textures/compressed/flare_2bpp_rgba.pvr' );
- var park3_cube_nomip_4bpp_rgb = loader.load( 'textures/compressed/park3_cube_nomip_4bpp_rgb.pvr', onCube1Loaded );
- var park3_cube_mip_2bpp_rgb_v3 = loader.load( 'textures/compressed/park3_cube_mip_2bpp_rgb_v3.pvr', onCube2Loaded );
- disturb_2bpp_rgb.minFilter =
- disturb_2bpp_rgb.magFilter =
- flare_4bpp_rgba.minFilter =
- flare_4bpp_rgba.magFilter =
- disturb_4bpp_rgb.minFilter =
- disturb_4bpp_rgb.magFilter =
- disturb_4bpp_rgb_v3.minFilter =
- disturb_4bpp_rgb_v3.magFilter =
- flare_2bpp_rgba.minFilter =
- flare_2bpp_rgba.magFilter = THREE.LinearFilter;
- var material1 = new THREE.MeshBasicMaterial( { map: disturb_4bpp_rgb } );
- var material2 = new THREE.MeshBasicMaterial( { map: disturb_4bpp_rgb_mips } );
- var material3 = new THREE.MeshBasicMaterial( { map: disturb_2bpp_rgb } );
- var material4 = new THREE.MeshBasicMaterial( { map: flare_4bpp_rgba, side: THREE.DoubleSide, depthTest: false, transparent: true } );
- var material5 = new THREE.MeshBasicMaterial( { map: flare_2bpp_rgba, side: THREE.DoubleSide, depthTest: false, transparent: true } );
- var material6 = new THREE.MeshBasicMaterial( { envMap: park3_cube_nomip_4bpp_rgb } );
- var material8 = new THREE.MeshBasicMaterial( { envMap: park3_cube_mip_2bpp_rgb_v3 } );
- var material7 = new THREE.MeshBasicMaterial( { map: disturb_4bpp_rgb_v3 } );
- //
- var mesh = new THREE.Mesh( geometry, material1 );
- mesh.position.x = - 500;
- mesh.position.y = 200;
- scene.add( mesh );
- meshes.push( mesh );
- mesh = new THREE.Mesh( geometry, material2 );
- mesh.position.x = - 166;
- mesh.position.y = 200;
- scene.add( mesh );
- meshes.push( mesh );
- mesh = new THREE.Mesh( geometry, material3 );
- mesh.position.x = 166;
- mesh.position.y = 200;
- scene.add( mesh );
- meshes.push( mesh );
- mesh = new THREE.Mesh( geometry, material7 );
- mesh.position.x = 500;
- mesh.position.y = 200;
- scene.add( mesh );
- meshes.push( mesh );
- mesh = new THREE.Mesh( geometry, material4 );
- mesh.position.x = - 500;
- mesh.position.y = - 200;
- scene.add( mesh );
- meshes.push( mesh );
- mesh = new THREE.Mesh( geometry, material5 );
- mesh.position.x = - 166;
- mesh.position.y = - 200;
- scene.add( mesh );
- meshes.push( mesh );
- var torus = new THREE.TorusBufferGeometry( 100, 50, 32, 24 );
- mesh = new THREE.Mesh( torus, material6 );
- mesh.position.x = 166;
- mesh.position.y = - 200;
- scene.add( mesh );
- meshes.push( mesh );
- mesh = new THREE.Mesh( torus, material8 );
- mesh.position.x = 500;
- mesh.position.y = - 200;
- scene.add( mesh );
- meshes.push( mesh );
- //
- renderer = new THREE.WebGLRenderer( { antialias: true } );
- renderer.setPixelRatio( window.devicePixelRatio );
- renderer.setSize( window.innerWidth, window.innerHeight );
- document.body.appendChild( renderer.domElement );
- window.addEventListener( 'resize', onWindowResize, false );
- }
- function onWindowResize() {
- camera.aspect = window.innerWidth / window.innerHeight;
- camera.updateProjectionMatrix();
- renderer.setSize( window.innerWidth, window.innerHeight );
- }
- function animate() {
- requestAnimationFrame( animate );
- var time = Date.now() * 0.001;
- for ( var i = 0; i < meshes.length; i ++ ) {
- var mesh = meshes[ i ];
- mesh.rotation.x = time;
- mesh.rotation.y = time;
- }
- renderer.render( scene, camera );
- }
- </script>
- </body>
- </html>
|