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

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

81. 在Laya2上 getGraphicBounds获取失败 [ 69%]

...败 =10.5pt看4张图就知道了,图片是有加载显示成功,但是在handler里面返回参数为undefined,getGraphicBounds内容始终为0   附件 : --> 2018-11-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关链接 提交 2 ...

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

82. t._addReference is not a function [ 69%]

...同问题,解决了,供参考: Laya.loader.load(chapterBG, Laya.Handler.create(this, this.onBGLoaded, [chapterBG])/* , Laya.Handler.create(this, this.onBGLoadProgress) */); 第三个参数打开在某些条件下会出t._addReference is not a function 可能是加载进度回调时候跑...

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

83. 二次开发 异步回调没反应 [ 68%]

...没反应 ts: /**视频广告 */ public static showVideoAd(success: Laya.Handler, type: string): void { if (GameConfig.ins.isDev) { success.runWith(1); return; } var VGUtil = Laya.PlatformClass.createClass("com.szdn.game.fkzy.VGUtil"); VGUtil.callWithBack(back, "showVideoAd", type);  function back(...

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

84. 3D场景环境设置 · LayaAir3.0文档 · LAYABOX [ 68%]

...nderer; //加载相机天空盒材质 Laya.Material.load("sky2.lmat", Laya.Handler.create(null, function(mat: any) { //修改天空盒渲染器天空盒材质 skyRenderer.material = mat; })); 2.3 IDE中创建天空盒 2.3.1 更改IDE默认球形天空盒 当我们用IDE场景一个3D场景时...

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

85. 针对2.0.0 beta5 setLoadingPage 做增强 [ 68%]

...Scene = scene Laya.Scene.setLoadingPage(scene) } /** * 打开场景 * otherHandler 执行时间小于 loadScene 使用此方法 * otherHandler 不会阻塞 loadScene * @param {String} url 要打开场景 * @param {Promise} otherHandler 同时执行其它事件 * @param {Boolean} closeOther 关...

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

86. 用LayaAir引擎解析Tiled Map地图(JavaScript-2D进阶篇(JS)-扩展模块) [ 68%]

...pLoaded() this.tMap.createMap("res/TiledMap/orthogonal.json",viewRect,Laya.Handler.create(this,onMapLoaded)); function onMapLoaded(){ //将原地图放大2倍 this.tMap.scale = 2; } ``` 运行效果如图8所示。 ![图8](img/8.png) (图8) #### 2.2.2 设置地图缩放中心点 很明显,图8...

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

87. 同步龙骨插槽动画方案 [ 68%]

...Laya.Templet;     public mArmature: Laya.Skeleton     private _handlerLaya.Handler;      constructor(url: string, handlerLaya.Handler, aniMode: number = 0) {         this._handler = handler;         this.mFactory = new Laya.Templet();        ...

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

88. 设置遮罩(TypeScript-LayaAir基础篇(TS)-位图) [ 67%]

...回调方法绘制图片并添加到舞台 Laya.loader.load(this.Res,Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{ this.img = new Laya.Sprite(); //获取图片资源,绘制到画布 this.img.graphics.drawTexture(Laya.loader.getRes(this.Res),150,50); //添加到舞台 L...

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

89. 使用百度地图显示当前位置(JavaScript-LayaAir基础篇(JS)-硬件设备相关) [ 67%]

...Geolocation.enableHighAccuracy = true; Laya.Geolocation.watchPosition(Laya.Handler.create(this, updatePosition), Laya.Handler.create(this, onError)); // 绑定作用域 convertToBaiduCoord = convertToBaiduCoord.bind(this); ``` ​ 由于本例不需要使用LayaAir显示元素,因此舞台尺...

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

90. 用LayaAir引擎解析Tiled Map地图(TypeScript-2D进阶篇(TS)-扩展模块) [ 67%]

...pLoaded() this.tMap.createMap("res/TiledMap/orthogonal.json",viewRect,Laya.Handler.create(this,this.onMapLoaded)); } private onMapLoaded():void{ //将原地图放大2倍 this.tMap.scale = 2; } } new GameMain(); ``` 运行效果如图8所示。 ![图8](img/8.png) (图8) #### 2.2.2 设置地图缩放...

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