美文网首页
Alpha贴图

Alpha贴图

作者: Codifier | 来源:发表于2019-11-19 20:36 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>AlphaMap</title>
        <script src="../../three-part/threejs/three.js"></script>
        <script src="../../three-part/utils/stats.min.js"></script>
        <script src="../../three-part/utils/dat.gui.min.js"></script>
        <script src="../controls/TrackballControls.js"></script>
        <script src="../util/util.js"></script>
        <style>
            body {
                margin: 0;
                overflow: hidden;
            }
        </style>
    </head>
    <body>
    <div id="container"></div>
    <script type="text/javascript">
        init();
        function init() {
            // show FPS
            let stats = initStats();
            // resize
            window.addEventListener('resize', onResize, false);
    
            let scene = new THREE.Scene();
            let camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.1, 1000);
            camera.position.x = -30;
            camera.position.y = 40;
            camera.position.z = 30;
            camera.lookAt(scene.position);
    
            let renderer = new THREE.WebGLRenderer();
            renderer.setClearColor(new THREE.Color(0x000000));
            renderer.setSize(window.innerWidth, window.innerHeight);
            renderer.shadowMap.enabled = true;
            document.getElementById("container").appendChild(renderer.domElement);
    
            // init trackball control
            let trackballControls = initTrackballControls(camera, renderer);
            let clock = new THREE.Clock();
            let textureLoader = new THREE.TextureLoader();
    
            let planeGeometry = new THREE.PlaneGeometry(100, 100, 1, 1);
            let planeMaterial = new THREE.MeshLambertMaterial({
                color: 0xffffff,
                map: textureLoader.load("../assets/textures/general/floor-wood.jpg")
            });
            planeMaterial.map.wrapS = 50;
            planeMaterial.map.wrapT = 50;
            let plane = new THREE.Mesh(planeGeometry, planeMaterial);
            plane.receiveShadow = true;
            plane.rotation.x = -0.5 * Math.PI;
            scene.add(plane);
    
            let ambienLight = new THREE.AmbientLight(0x444444);
            scene.add(ambienLight);
    
            let spotLight = new THREE.SpotLight(0xffffff);
            spotLight.position.set(-40, 60, -10);
            spotLight.castShadow = true;
            scene.add(spotLight);
    
            let sphereGeometry = new THREE.SphereGeometry(10, 20, 20);
            let sphereMaterial = new THREE.MeshStandardMaterial({
                alphaMap: textureLoader.load("../assets/textures/alpha/partial-transparency.png"),
                metalness: 0.2,
                roughness: 0.2,
                // Sets the alpha value to be used when running an alpha test.
                // The material will not be renderered if the opacity is lower than this value.
                alphaTest: 0.5
            });
            sphereMaterial.alphaMap.wrapS = THREE.RepeatWrapping;
            sphereMaterial.alphaMap.wrapT = THREE.RepeatWrapping;
            sphereMaterial.alphaMap.repeat.set(8, 8);
            let sphere = new THREE.Mesh(sphereGeometry, sphereMaterial);
            sphere.position.set(0, 10, 0);
            scene.add(sphere);
    
            // attributes which can be modified in GUI
            const controls = {
    
            };
            // init GUI
            initGUI();
    
            renderScene();
    
            function initGUI(){
                let gui = new dat.GUI();
            }
    
            function onResize() {
                camera.aspect = window.innerWidth / window.innerHeight;
                camera.updateProjectionMatrix();
                renderer.setSize(window.innerWidth, window.innerHeight);
            }
    
            function renderScene(){
                trackballControls.update(clock.getDelta());
                stats.update();
                requestAnimationFrame(renderScene);
                renderer.render(scene, camera);
            }
        }
    </script>
    </body>
    </html>
    

    运行结果:


    相关文章

      网友评论

          本文标题:Alpha贴图

          本文链接:https://www.haomeiwen.com/subject/bligictx.html