- BabylonJS 教程
- BabylonJS - 首页
- BabylonJS - 简介
- BabylonJS - 环境设置
- BabylonJS - 概述
- BabylonJS - 基本元素
- BabylonJS - 材质
- BabylonJS - 动画
- BabylonJS - 相机
- BabylonJS - 灯光
- BabylonJS - 参数化形状
- BabylonJS - 模型网格
- 矢量位置和旋转
- BabylonJS - 贴花
- BabylonJS - Curve3
- BabylonJS - 动态纹理
- BabylonJS - 视差贴图
- BabylonJS 光晕
- BabylonJS - 创建屏幕截图
- BabylonJS - 反射探针
- 标准渲染管线
- BabylonJS - 着色器材质
- BabylonJS - 骨骼
- BabylonJS - 物理引擎
- BabylonJS - 播放声音和音乐
- BabylonJS 有用资源
- BabylonJS - 快速指南
- BabylonJS - 有用资源
- BabylonJS - 讨论
BabylonJS 光晕
光线散射后落在图像上,会看到光晕和颜色的变化。在开发中为了展示逼真的光照效果,使用了光晕效果。想象阳光照射在镜子上,见到的效果通常称为光晕。
语法
以下是创建光晕的语法 -
var lensFlareSystem = new BABYLON.LensFlareSystem("lensFlareSystem", light0, scene);
参数
考虑以下参数以创建光晕 -
名称 - 给光晕系统起一个名称。
光线 - 可以是光源或相机
场景 - 将光晕添加到其中的场景
若要向场景添加光晕,执行以下命令 -
var flare1 = new BABYLON.LensFlare(0.5, 0.15, new BABYLON.Color3(1, 1, 1), "images/sun1.png", lensFlareSystem);
大小 - 0 和 1 之间的浮动数值。
位置 - 光晕的源头(发射器)(可以是相机、灯光或模型网格)。
光晕系统 - 使用光晕系统类创建的对象。
演示
<!doctype html> <html> <head> <meta charset = "utf-8"> <title>BabylonJs - Basic Element-Creating Scene</title> <script src = "babylon.js"></script> <style> canvas {width: 100%; height: 100%;} </style> </head> <body> <canvas id = "renderCanvas"></canvas> <script type = "text/javascript"> var canvas = document.getElementById("renderCanvas"); var engine = new BABYLON.Engine(canvas, true); var createScene = function() { var scene = new BABYLON.Scene(engine); scene.clearColor = BABYLON.Color3.Gray(); var camera = new BABYLON.ArcRotateCamera( "Camera", -Math.PI / 2, 1.5, 15, BABYLON.Vector3.Zero(), scene); camera.attachControl(canvas, false); var light1 = new BABYLON.HemisphericLight("light1", new BABYLON.Vector3(0, -1, 0), scene); light1.groundColor = new BABYLON.Color3(0.2, 0.2, 0.2); light1.intensity = 0.5; var bigdiamond = BABYLON.Mesh.CreateSphere("sphere", 32,6, scene); bigdiamond.visibility = 0.6; var dmat = new BABYLON.StandardMaterial("dmat", scene); dmat.diffuseColor = BABYLON.Color3.Blue(); var texture = new BABYLON.Texture("images/earth.jpg", scene); dmat.diffuseTexture = texture; dmat.specularColor = BABYLON.Color3.White(); bigdiamond.material = dmat; var lensflare1 = new BABYLON.LensFlareSystem("lensFlareSystem", camera, scene); var flare1 = new BABYLON.LensFlare( Math.random(), 0.15, new BABYLON.Color3(1, 1, 1), "images/sun1.png", lensflare1); var lensflare2 = new BABYLON.LensFlareSystem("lensFlareSystem", camera, scene); var flare2 = new BABYLON.LensFlare( Math.random()/2, 0.1, new BABYLON.Color3(1, 0, 0), "images/sun1.png", lensflare2); var lensflare3 = new BABYLON.LensFlareSystem("lensFlareSystem", camera, scene); var flare3 = new BABYLON.LensFlare( Math.random()/8, 0.1, new BABYLON.Color3(1, 0, 1), "images/sun1.png", lensflare3); var lensflare4 = new BABYLON.LensFlareSystem("lensFlareSystem", camera, scene); var flare4 = new BABYLON.LensFlare( Math.random()/12, 0.1, new BABYLON.Color3(0, 1, 0), "images/sun1.png", lensflare4); scene.registerBeforeRender(function() { scene.getCameraByID("Camera").alpha += 0.01; }); return scene; }; var scene = createScene(); engine.runRenderLoop(function() { scene.render(); }); </script> </body> </html>
输出
以上的代码行生成以下输出 -
earth.jpg
images/sun1.png
广告