| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>three.js webgpu - performance</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="example.css">
- </head>
- <body>
- <div id="info">
- <a href="https://threejs.org/" target="_blank" rel="noopener" class="logo-link"></a>
- <div class="title-wrapper">
- <a href="https://threejs.org/" target="_blank" rel="noopener">three.js</a><span>Performance</span>
- </div>
- <small>
- Dungeon - Low Poly Game Level Challenge by
- <a href="https://sketchfab.com/warkarma" target="_blank" rel="noopener">Warkarma</a><br />
- <a href="https://hdrihaven.com/hdri/?h=royal_esplanade" target="_blank" rel="noopener">Royal Esplanade</a> from <a href="https://hdrihaven.com/" target="_blank" rel="noopener">HDRI Haven</a>.
- </small>
- </div>
- <script type="importmap">
- {
- "imports": {
- "three": "../build/three.webgpu.js",
- "three/webgpu": "../build/three.webgpu.js",
- "three/tsl": "../build/three.tsl.js",
- "three/addons/": "./jsm/"
- }
- }
- </script>
- <script type="module">
- import * as THREE from 'three/webgpu';
- import { Inspector } from 'three/addons/inspector/Inspector.js';
- import { OrbitControls } from 'three/addons/controls/OrbitControls.js';
- import { GLTFLoader } from 'three/addons/loaders/GLTFLoader.js';
- import { DRACOLoader } from 'three/addons/loaders/DRACOLoader.js';
- import { HDRLoader } from 'three/addons/loaders/HDRLoader.js';
- let camera, scene, renderer;
- let model;
- const options = { static: true };
- init();
- function setStatic( object, value ) {
- object.traverse( child => {
- if ( child.isMesh ) {
- child.static = value;
- }
- } );
- }
- function init() {
- const container = document.createElement( 'div' );
- document.body.appendChild( container );
- camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 0.1, 100 );
- camera.position.set( 60, 60, 60 );
- scene = new THREE.Scene();
- renderer = new THREE.WebGPURenderer( { antialias: true } );
- renderer.setPixelRatio( window.devicePixelRatio );
- renderer.setSize( window.innerWidth, window.innerHeight );
- renderer.toneMapping = THREE.ACESFilmicToneMapping;
- renderer.toneMappingExposure = 1;
- renderer.inspector = new Inspector();
- renderer.setAnimationLoop( render );
- container.appendChild( renderer.domElement );
- //
- new HDRLoader()
- .setPath( 'textures/equirectangular/' )
- .load( 'royal_esplanade_1k.hdr', function ( texture ) {
- texture.mapping = THREE.EquirectangularReflectionMapping;
- scene.environment = texture;
- // model
- const dracoLoader = new DRACOLoader();
- dracoLoader.setDecoderPath( 'jsm/libs/draco/gltf/' );
- const loader = new GLTFLoader().setPath( 'models/gltf/' );
- loader.setDRACOLoader( dracoLoader );
- loader.load( 'dungeon_warkarma.glb', async function ( gltf ) {
- model = gltf.scene;
- // wait until the model can be added to the scene without blocking due to shader compilation
- await renderer.compileAsync( model, camera, scene );
- scene.add( model );
- //
- setStatic( model, options.static );
-
- } );
- } );
- const controls = new OrbitControls( camera, renderer.domElement );
- controls.minDistance = 2;
- controls.maxDistance = 60;
- controls.target.set( 0, 0, - 0.2 );
- controls.update();
- // gui
- const gui = renderer.inspector.createParameters( 'Settings' );
- gui.add( options, 'static' ).onChange( () => {
- setStatic( model, options.static );
- } );
- window.addEventListener( 'resize', onWindowResize );
- }
- function onWindowResize() {
- camera.aspect = window.innerWidth / window.innerHeight;
- camera.updateProjectionMatrix();
- renderer.setSize( window.innerWidth, window.innerHeight );
- }
- //
- function render() {
- renderer.render( scene, camera );
- }
- </script>
- </body>
- </html>
|