• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 949 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0049 秒)

471. Effect材质详解(ActionScript-3D基础(AS3)-模型材质详解) [ 59%]

...ipt var earth:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createSphere())) as MeshSprite3D; earth.transform.position = new Vector3(0, 0, 0); //创建EffectMaterial材质 var material:EffectMaterial = new EffectMaterial(); //加载地球贴图 Texture2D.load("res/threeDimen/texture/e...

来源: Laya2.0_文档 发布时间: 20210715

472. 图集动画必须要有这一段代码吗 [ 59%]

...有这一段代码吗 Laya.loader.load("res/atlas/ui.atlas",Laya.Handler.create(this,this.onLoaded)); 2017-09-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: 这行代码是...

来源: Laya_社区 发布时间: 20170925

473. 分享:LayaAir下如何获取图集下的小图资源? [ 59%]

....loader.load([{url:"res/atlas/atlas_res.json",type:Loader.ATLAS}], Handler.create(this, onLoaded)); } private function onLoaded():void { //获取图集下的单张小图 var texture:Texture=Laya.loader.getRes("atlas_res/01.png"); var sp:Sprite=new Sprite(); sp.graphics.drawTexture(texture,200,100); ...

来源: Laya_社区 发布时间: 20160707

474. handler携带的参数在回调函数里面怎么获取? [ 59%]

... qian 赞同来自: Laya.loader.load("res/atlas/war/hero.atlas", Handler.create(this, this.onLoad), null, Loader.ATLAS); 什么意思,, 2018-03-30 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 VkonSun 相关问题 Layabox 2.0 bate5 ...

来源: Laya_社区 发布时间: 20180330

475. 简单的环形进度条 Tween版 [ 59%]

...例 或者demo的没有?感觉官网上的有点太简单。 Laya.loader.create 进度回调函数执行两次 麻烦帮看一下这种遮罩bar的进度条设了遮罩不起作用 官方提供的进度条示例 只能设置progress.png的九宫, 里面的progress$bar.png 无法设置,然而...

来源: Laya_社区 发布时间: 20190518

476. OPPO主包无法从分包中拿资源 [ 59%]

...中拿资源         Laya.loader.load(分包路径, Laya.Handler.create(null, function (obj: any)         {完全走不进来         })); 2020-08-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 ...

来源: Laya_社区 发布时间: 20200824

477. 微信小游戏 · LayaAir3.0文档 · LAYABOX [ 59%]

...Cube.lh").then((res: Laya.PrefabImpl) => { let sp3: Laya.Sprite3D = res.create() as Laya.Sprite3D; this.scene3d.addChild(sp3); }); }) Laya.loader.loadPackage("sub2", this.printProgress).then(() => { Laya.loader.load("sub2/Sphere.lh").then((res: any) => { let sp3 = res.create(); this.scene3d...

来源: Laya3.0_文档 发布时间: 20241014

478. 材质的加载(JavaScript-3D基础(JS)-LayaAir3D之Material材质) [ 58%]

...质加载 Laya.BaseMaterial.load("res/skyBox2/skyBox2.lmat",Laya.Handler.create(this,function(mat) { var skyRenderer = camera.skyRenderer; //创建天空盒的mesh skyRenderer.mesh = Laya.SkyBox.instance; //设置天空盒材质 skyRenderer.material = mat; })); ``` ![](img/1.png)(图1)

来源: Laya2.0_文档 发布时间: 20210715

479. 材质的加载(TypeScript-3D基础(TS)-LayaAir3D之Material材质) [ 58%]

...质加载 Laya.BaseMaterial.load("res/skyBox2/skyBox2.lmat",Laya.Handler.create(this,function(mat) { var skyRenderer = camera.skyRenderer; //创建天空盒的mesh skyRenderer.mesh = Laya.SkyBox.instance; //设置天空盒材质 skyRenderer.material = mat; })); ``` ![](img/1.png)(图1)

来源: Laya2.0_文档 发布时间: 20210714

480. 微信上测试加载服务器资源 [ 58%]

... = "http://212.xx.xx.xx/"; Laya.loader.load("res/atlas/comp.atlas",Handler.create(this,loadComplete)); loadComplete(){显示自己的ui}; 项目设置选择不校验合法域名。(我没有配置域名,用IP可以吗?) 发现comp.atlas是加载下来了,图片不行,但是没有ui。怎...

来源: Laya_社区 发布时间: 20190116