上回继续,做为一个游戏引擎,怎能没有Sprite(精灵)? 下面是基本示例:

const createScene = function () {
const scene = new BABYLON.Scene(engine); const camera = new BABYLON.ArcRotateCamera("Camera", -Math.PI / 2, Math.PI / 2, 8, new BABYLON.Vector3(0, 0, 0));
camera.attachControl(canvas, true);
const light = new BABYLON.PointLight("Point", new BABYLON.Vector3(5, 10, 5)); // Create a sprite manager
// Parameters : name, imgUrl, capacity(最大容量,即树的总数), cellSize, scene
const spriteManagerTrees = new BABYLON.SpriteManager("treesManager", "../assets/img/palm.png", 2000, { width: 512, height: 1024 });
const tree1 = new BABYLON.Sprite("tree", spriteManagerTrees);
//注:树的高宽比例,应该跟cellSize的比例一致,避免失真
tree1.width = 1;
tree1.height = 2;
tree1.position.y = -0.5; const tree2 = new BABYLON.Sprite("tree2", spriteManagerTrees);
tree2.width = 1;
tree2.height = 2;
tree2.position.x = -1.5;
tree2.position.y = 0.8;
//逆时针转45度
tree2.angle = Math.PI / 4; const tree3 = new BABYLON.Sprite("tree3", spriteManagerTrees);
tree3.width = 1;
tree3.height = 2;
tree3.position.x = 1.5;
tree3.position.y = 0.8;
//顺时针转45度
tree3.angle = -Math.PI / 4; const tree4 = new BABYLON.Sprite("tree4", spriteManagerTrees);
tree4.width = 1;
tree4.height = 2;
tree4.position.x = -1.5;
tree4.position.y = -1.5;
//垂直翻转
tree4.invertV = true; const tree5 = new BABYLON.Sprite("tree5", spriteManagerTrees);
tree5.width = 1;
tree5.height = 2;
tree5.position.x = 1.5;
tree5.position.y = -1.5;
//水平翻转
tree5.invertU = true; showText(); return scene;
} const showText = function () {
const ui = BABYLON.GUI.AdvancedDynamicTexture.CreateFullscreenUI("ui");
const text1 = new BABYLON.GUI.TextBlock("t0", "tree1");
const text2 = new BABYLON.GUI.TextBlock("t1", "tree2");
const text3 = new BABYLON.GUI.TextBlock("t2", "tree3");
const text4 = new BABYLON.GUI.TextBlock("t1", "tree4");
const text5 = new BABYLON.GUI.TextBlock("t2", "tree5"); text1.color = 'white';
text2.color = 'white';
text3.color = 'white';
text4.color = 'white';
text5.color = 'white'; text1.top = '-10%';
text2.top = '-27%';
text3.top = '-27%';
text4.top = '4%';
text5.top = '4%'; text1.left = '-0%';
text2.left = '-18%';
text3.left = '18%';
text4.left = '-15%';
text5.left = '15%'; ui.addControl(text1);
ui.addControl(text2);
ui.addControl(text3);
ui.addControl(text4);
ui.addControl(text5);
}

在线地址: https://yjmyzz.github.io/babylon_js_study/day09/01.html

有1点要注意:

Sprite没有roration、scaling 这类mesh对象常有的属性, 要调整Sprite的大小,只能通过width/height来设置,想旋转/翻转sprite,可以通过angle、invertV、insertU来控制。

把这颗树复制一堆,可以模拟出1片小树林:

const createScene = function () {
const scene = new BABYLON.Scene(engine); const camera = new BABYLON.ArcRotateCamera("Camera", -Math.PI / 2, Math.PI / 2, 8, new BABYLON.Vector3(0, 0, 0));
camera.attachControl(canvas, true);
const light = new BABYLON.PointLight("Point", new BABYLON.Vector3(5, 10, 5)); // Create a sprite manager
// Parameters : name, imgUrl, capacity(最大容量,即树的总数), cellSize, scene
const spriteManagerTrees = new BABYLON.SpriteManager("treesManager", "../assets/img/palm.png", 500, { width: 512, height: 1024 });
//Mutliple trees
for (let i = 0; i < 500; i++) {
const tree = new BABYLON.Sprite("tree", spriteManagerTrees);
tree.width = 1;
tree.height = 2;
tree.position.x = BABYLON.Scalar.RandomRange(-25, 25);
tree.position.z = BABYLON.Scalar.RandomRange(-25, 25);
} return scene;
}

在线地址: https://yjmyzz.github.io/babylon_js_study/day09/02.html

纯静态的Sprite从效果上看,跟html中的img标签差不多,只是简单导入一张图片而已。Sprite还可以实现类似gif的动画,比如有下面这张图:

const spriteManagerUFO = new BABYLON.SpriteManager("ufoManager", "../assets/img/ufo.png", 1, { width: 128, height: 76 });
const ufo = new BABYLON.Sprite("ufo", spriteManagerUFO);
ufo.width = 1;
ufo.height = 0.5; //playAnimation(from: number, to: number, loop: boolean, delay: number, onAnimationEnd: Nullable<(() => void)>): void
ufo.playAnimation(0, 16, true, 125);

在线地址:https://yjmyzz.github.io/babylon_js_study/day09/03.html

其大致原理,就是把ufo.png这张图,按width:128,height:76 分割成17个cell(单元格),调用 playAnimation 方法时,从0~16(注:下标索引从0开始)依次播放,每1个cell播放的时间间隔为125ms, 第3个true表示循环播放,详情可见官方API文档

此外,加载图片时,还能人为指定加载第几个cell ,比如下面这张图,总共有45个cell

下面的代码演示了,如何加载指定Cell:

const createScene = function () {
const scene = new BABYLON.Scene(engine); const camera = new BABYLON.ArcRotateCamera("Camera", -Math.PI / 2, Math.PI / 2, 8, new BABYLON.Vector3(0, 0, 0));
camera.attachControl(canvas, true);
const light = new BABYLON.PointLight("Point", new BABYLON.Vector3(5, 10, 5)); const spriteManagerPlayer = new BABYLON.SpriteManager("playerManager", "../assets/img/player.png", 10, 64); const player1 = new BABYLON.Sprite("player1", spriteManagerPlayer);
player1.cellIndex=0;
player1.position.x = -1; const player2 = new BABYLON.Sprite("player2", spriteManagerPlayer);
player2.cellIndex=11;
player2.position.x = 0; const player3 = new BABYLON.Sprite("player3", spriteManagerPlayer);
player3.cellIndex=44;
player3.position.x = 1; const player4 = new BABYLON.Sprite("player4", spriteManagerPlayer);
player4.position.y = 1.5;
player4.position.x = -0.8;
player4.playAnimation(0,40,true,100); const player5 = new BABYLON.Sprite("player5", spriteManagerPlayer);
player5.position.y = 1.5;
player5.position.x = 0.8;
player5.playAnimation(0,9,true,100); return scene;
}

在线地址:https://yjmyzz.github.io/babylon_js_study/day09/04.html

最后,综合运用一把,把UFO、棕榈树 加入先前的村庄中

const createScene = function () {
const scene = new BABYLON.Scene(engine); const camera = new BABYLON.ArcRotateCamera("camera", -Math.PI / 2, Math.PI / 2.5, 15, new BABYLON.Vector3(0, 0, 0));
camera.upperBetaLimit = Math.PI / 2.2;
camera.attachControl(canvas, true);
const light = new BABYLON.HemisphericLight("light", new BABYLON.Vector3(1, 1, 0)); const spriteManagerTrees = new BABYLON.SpriteManager("treesManager", "../assets/img/palm.png", 2000, { width: 512, height: 1024 }, scene); //We create trees at random positions
for (let i = 0; i < 200; i++) {
const tree = new BABYLON.Sprite("tree", spriteManagerTrees);
tree.position.x = Math.random() * (-30);
tree.position.z = Math.random() * 20 + 8;
tree.position.y = 0.5;
} for (let i = 0; i < 200; i++) {
const tree = new BABYLON.Sprite("tree", spriteManagerTrees);
tree.position.x = Math.random() * (25) + 7;
tree.position.z = Math.random() * -35 + 8;
tree.position.y = 0.5;
} //Skybox
const skybox = BABYLON.MeshBuilder.CreateBox("skyBox", { size: 150 }, scene);
const skyboxMaterial = new BABYLON.StandardMaterial("skyBox", scene);
skyboxMaterial.backFaceCulling = false;
skyboxMaterial.reflectionTexture = new BABYLON.CubeTexture("../assets/img/sky/skybox", scene);
skyboxMaterial.reflectionTexture.coordinatesMode = BABYLON.Texture.SKYBOX_MODE;
skyboxMaterial.diffuseColor = new BABYLON.Color3(0, 0, 0);
skyboxMaterial.specularColor = new BABYLON.Color3(0, 0, 0);
skybox.material = skyboxMaterial; BABYLON.SceneLoader.ImportMeshAsync("", "../assets/glb/", "valleyvillage.glb"); const spriteManagerUFO = new BABYLON.SpriteManager("ufoManager", "../assets/img/ufo.png", 1, { width: 128, height: 76 });
const ufo = new BABYLON.Sprite("ufo", spriteManagerUFO);
ufo.width = 1;
ufo.height = 0.5;
ufo.position.y = 5;
ufo.position.x = 3;
ufo.position.z = 2; //playAnimation(from: number, to: number, loop: boolean, delay: number, onAnimationEnd: Nullable<(() => void)>): void
ufo.playAnimation(0, 16, true, 125); return scene;
}

在线地址:https://yjmyzz.github.io/babylon_js_study/day09/05.html

参考文档:

https://doc.babylonjs.com/features/featuresDeepDive/sprites/sprite_manager

https://doc.babylonjs.com/features/introductionToFeatures/chap5/trees

babylon.js 学习笔记(9)的更多相关文章

  1. js学习笔记:webpack基础入门(一)

    之前听说过webpack,今天想正式的接触一下,先跟着webpack的官方用户指南走: 在这里有: 如何安装webpack 如何使用webpack 如何使用loader 如何使用webpack的开发者 ...

  2. Vue.js学习笔记(2)vue-router

    vue中vue-router的使用:

  3. JS 学习笔记--9---变量-作用域-内存相关

    JS 中变量和其它语言中变量最大的区别就是,JS 是松散型语言,决定了它只是在某一个特定时间保存某一特定的值的一个名字而已.由于在定义变量的时候不需要显示规定必须保存某种类型的值,故变量的值以及保存的 ...

  4. WebGL three.js学习笔记 使用粒子系统模拟时空隧道(虫洞)

    WebGL three.js学习笔记 使用粒子系统模拟时空隧道 本例的运行结果如图: 时空隧道demo演示 Demo地址:https://nsytsqdtn.github.io/demo/sprite ...

  5. WebGL three.js学习笔记 法向量网格材质MeshNormalMaterial的介绍和创建360度全景天空盒的方法

    WebGL学习----Three.js学习笔记(5) 点击查看demo演示 Demo地址:https://nsytsqdtn.github.io/demo/360/360 简单网格材质 MeshNor ...

  6. WebGL three.js学习笔记 创建three.js代码的基本框架

    WebGL学习----Three.js学习笔记(1) webgl介绍 WebGL是一种3D绘图协议,它把JavaScript和OpenGL ES 2.0结合在一起,通过增加OpenGL ES 2.0的 ...

  7. vue.js 学习笔记3——TypeScript

    目录 vue.js 学习笔记3--TypeScript 工具 基础类型 数组 元组 枚举 字面量 接口 类类型 类类型要素 函数 函数参数 this对象和类型 重载 迭代器 Symbol.iterat ...

  8. 2019-4-29 js学习笔记

    js学习笔记一:js数据类型   1:基本数据类型       number类型(整数,小数)      String类型          boolean类型        NaN类型其实是一个nu ...

  9. 一点感悟:《Node.js学习笔记》star数突破1000+

    写作背景 笔者前年开始撰写的<Node.js学习笔记> github star 数突破了1000,算是个里程碑吧. 从第一次提交(2016.11.03)到现在,1年半过去了.突然有些感慨, ...

  10. JS学习笔记5_DOM

    1.DOM节点的常用属性(所有节点都支持) nodeType:元素1,属性2,文本3 nodeName:元素标签名的大写形式 nodeValue:元素节点为null,文本节点为文本内容,属性节点为属性 ...

随机推荐

  1. Java单例模式:从实战到面试的深度解析

    结论先行 饿汉式:线程安全但可能造成资源浪费,推荐在初始化成本低的场景使用 懒汉式:需要解决线程安全问题,推荐使用双重检查锁+volatile优化 静态内部类:最佳实践方案,完美平衡延迟加载与线程安全 ...

  2. Windows管理小工具

    Windows 管理小工具 概述 Windows 管理小工具 是一个基于批处理脚本的多功能工具,旨在帮助用户快速管理 Windows 系统中的常见设置和功能.通过简单的菜单操作,用户可以轻松完成 Wi ...

  3. 校园圈子系统:Uni-app跨端渲染+TP6实时推送核心逻辑与代码

    在TP6中实现实时推送功能,核心逻辑围绕WebSocket服务搭建.用户连接管理.消息路由和性能优化展开.以下是详细的实现步骤和逻辑说明: TP6实时推送核心逻辑 WebSocket服务搭建 使用Wo ...

  4. 信息资源管理综合题之“ITSM(IT服务管理)和ITIL(基础架构标准库)内容”

    一.在百度百科中,关于IT服务管理有如下描述:专家的研究和大量企业时间表明,在IT项目的生命周期中,大约80%的时间与IT项目运营维护有关,而该阶段的投资仅占整个IT投资的20%,形成了典型的&quo ...

  5. CF1930G Prefix Max Set Counting 题解

    题意: 给定一棵以 1 为根的有根树,求出其所有 dfs 序中前缀最大值序列的数量.\(n\le 10^6\). 思路 显然考虑 DP. 由于是求前缀最大值序列的方案数,因此如果一些点要出现在这个序列 ...

  6. C#之清除已经注册的事件

    private static void DealA(object sender, UnhandledExceptionEventArgs e) { Console.WriteLine($"E ...

  7. Win32汇编学习笔记07.筛选器异常

    Win32汇编学习笔记07.筛选器异常-C/C++基础-断点社区-专业的老牌游戏安全技术交流社区 - BpSend.net 钢琴 od调试老师给的多媒体钢琴 运行找到Piano的过程函数里去 找到处理 ...

  8. C++函数重载的一点问题

    问题 #include <iostream> #include <vector> enum A { Value = 1 }; void a(std::vector<int ...

  9. 打工人神助攻!2025年最火OKR工具榜单,看板式目标管理必备

    OKR(目标与关键成果)已成为企业目标管理的标准框架,为确保OKR目标可落地,可视化.协作性强的工具需求激增.2025年,哪些OKR工具真正助力团队落地战略?本文盘点当下最火的5款OKR工具,帮助HR ...

  10. AI大模型应用开发-用LangChain构建带Agen流程的RAG系统

    随着大模型(LLM)能力越来越强,RAG(Retrieval Augmented Generation,检索增强生成)技术成为增强大模型知识准确性的关键手段. 通过检索实时数据.外部文档,模型能回答更 ...