| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 | <!DOCTYPE html><html lang="en">	<head>		<title>three.js webgpu - postprocessing</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>		<script type="importmap">			{				"imports": {					"three": "../build/three.module.js",					"three/addons/": "./jsm/",					"three/nodes": "./jsm/nodes/Nodes.js"				}			}		</script>		<script type="module">			import * as THREE from 'three';			import WebGPURenderer from 'three/addons/renderers/webgpu/WebGPURenderer.js';			import PostProcessing from 'three/addons/renderers/common/PostProcessing.js';			import { pass } from 'three/nodes';			let camera, renderer, postProcessing;			let object;			init();			function init() {				renderer = new WebGPURenderer();				renderer.setPixelRatio( window.devicePixelRatio );				renderer.setSize( window.innerWidth, window.innerHeight );				renderer.setAnimationLoop( animate );				document.body.appendChild( renderer.domElement );				//				camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 1, 1000 );				camera.position.z = 400;				const scene = new THREE.Scene();				scene.fog = new THREE.Fog( 0x000000, 1, 1000 );				object = new THREE.Object3D();				scene.add( object );				const geometry = new THREE.SphereGeometry( 1, 4, 4 );				const material = new THREE.MeshPhongMaterial( { color: 0xffffff, flatShading: true } );				for ( let i = 0; i < 100; i ++ ) {					const mesh = new THREE.Mesh( geometry, material );					mesh.position.set( Math.random() - 0.5, Math.random() - 0.5, Math.random() - 0.5 ).normalize();					mesh.position.multiplyScalar( Math.random() * 400 );					mesh.rotation.set( Math.random() * 2, Math.random() * 2, Math.random() * 2 );					mesh.scale.x = mesh.scale.y = mesh.scale.z = Math.random() * 50;					object.add( mesh );				}				scene.add( new THREE.AmbientLight( 0xcccccc ) );				const light = new THREE.DirectionalLight( 0xffffff, 3 );				light.position.set( 1, 1, 1 );				scene.add( light );				// postprocessing				postProcessing = new PostProcessing( renderer );				const scenePass = pass( scene, camera );				const scenePassColor = scenePass.getTextureNode();				const dotScreenPass = scenePassColor.dotScreen();				dotScreenPass.scale.value = 0.3;				const rgbShiftPass = dotScreenPass.getTextureNode().rgbShift();				rgbShiftPass.amount.value = 0.001;				postProcessing.outputNode = rgbShiftPass;				//				window.addEventListener( 'resize', onWindowResize );			}			function onWindowResize() {				camera.aspect = window.innerWidth / window.innerHeight;				camera.updateProjectionMatrix();				renderer.setSize( window.innerWidth, window.innerHeight );			}			function animate() {				object.rotation.x += 0.005;				object.rotation.y += 0.01;				postProcessing.render();			}		</script>	</body></html>
 |