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

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

721. 骨骼动画的使用(JavaScript-3D基础(JS)-LayaAir3D之Animator动画) [ 57%]

...ya.Scene3D.load("res/LayaScene_LayaMonkey/Conventional/LayaMonkey.ls",Laya.Handler.create(this,function(s){ Laya.stage.addChild(s); })); ``` ![](img/6.gif)(图6)

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

722. Laya tiledmap 监听事件未响应 [ 56%]

...and_water.json", new Rectangle(0, 0, Laya.stage.width, Laya.stage.height), Handler.create(this, this.mapLoaded), null, new Point(1600, 800));      }      private mapLoaded(): void {         let _mapSprite = this.tiledMap.mapSprite();         _mapSprite.mouseEnabled = true;         ...

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

723. laya.ui.Button_API3.0 [ 56%]

...一个 Button 实例。 package { import laya.ui.Button; import laya.utils.Handler; public class Button_Example { public function Button_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load("resource/ui/button....

来源: Laya3.0_api 发布时间: 20231115

724. layaAir IDE UI导出显示异常 [ 56%]

...里面加载的是json格式的: Laya.loader.load("res/atlas/comp.json", Handler.create(this, onAssetLoaded), null, Loader.ATLAS);   所有导致了图集位置错乱,麻烦技术修下这个bug. 建议ui编辑器默认就导出成json格式大图~~   2017-11-13 0 0 分享 微博 QZONE 微信 为...

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

725. 求教 JS项目的Promise如何使用 [ 56%]

...调方法绘制图片并添加到舞台 Laya.loader.load(this.monkey2,Laya.Handler.create(this,graphicsImg)); function graphicsImg(){ var img = new Laya.Sprite(); //获取图片资源,绘制到画布 img.graphics.drawTexture(Laya.loader.getRes(this.monkey2),100,50); //添加到舞台 Laya.stage.ad...

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

726. 生成的粒子特效怎么设置colorComponentInter无效? [ 56%]

...adImage('res/jiezou/wenzi2.png'); Laya.loader.load("res/parts/qipao.part", Handler.create(this, onAssetsLoaded), null, Loader.JSON); } function onAssetsLoaded(settings) { settings.colorComponentInter = true; sp = new Particle2D(settings); sp.emitter.start(); sp.play(); sp.x = 90; sp.y = 55; this.add...

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

727. 按照打地鼠教程来无法正常加载资源 [ 56%]

...            ];             Laya.loader.load(resArr,Handler.create(this,this.onLoaded));         }         private function onLoaded():void{             //显示界面             var gameView:GameView = new GameView();         ...

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

728. AS类中初始化JS类相关问题 [ 56%]

...在bin/h5目录下 下面是代码:   Laya.loader.load("Base.min.js", Handler.create(this,loadedHandler)); function loadedHandler(data:*):void{ //加载完回调 //__JS__('window.eval(data + "//# sourceURL=" + "Base.min.js")'); //new需要的类   //_base = new Browser.window.Base(); _base = __J...

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

729. 怎么确定MeshTerrainSprite3D.createFromMesh()中参数(宽/高)的具体数值? [ 56%]

... 对象池对类怎么传参数 as3中如何定义html中的id参数 Laya.Handler.create 加载图片回调参数问题 问题状态 最新活动: 2017-06-05 18:33 浏览: 1132 关注: 3 人

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

730. 图集资源clearRes清除之后下次再用到load时加载失败 [ 56%]

...tring):void { Laya.loader.load([{ url:url, type: Laya.Loader.ATLAS }],Laya.Handler.create(this,this.Loa,null)); } private Loa():void { console.log("在又有意义有意义有意义有意义有意义有意义有意义有意义"); } public ClearImg(url:string):void { Laya.Loader.clearRes(url); } 2018...

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