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

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

761. 其他引擎的Demo-Example_21 [ 69%]

...rCount++ % colors.length]; path.length = 0; } onMouseMove() { if (!isDown) return; path.push(Laya.stage.mouseX); path.push(Laya.stage.mouseY); } onMouseUp() { isDown = false; canvasGraphics.drawPoly(0, 0, path.concat(), color); } animate() { liveGraphics.clear(); liveGraphics.drawPoly(0, 0, path, co...

来源: Laya2.0_示例 发布时间: 20241120

762. Label在web和Native上面显示偶尔会有一些不规律的线条!! [ 69%]

...题贴图的重用,否则会有内容清理问题   this.destroy();   return; }       static getTextTexture(w: number, h: number): TextTexture {   // 不再回收   return new TextTexture(w, h); } 2020-03-02 0 1 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 可以传个复现demo吗...

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

763. Cannot enlarge memory arrays. [ 69%]

...RY to a higher value before the program runs, or (4) if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 laya.physics3D.js:308 Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value 16777216, (2) compile...

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

764. laya.ani.bone.SkinSlotDisplayData_API3.0 [ 69%]

...in laya/ani/bone/SkinSlotDisplayData.ts:39 Parameters currTexture: Texture Returns Texture destory destory(): void Defined in laya/ani/bone/SkinSlotDisplayData.ts:64 Returns void Globals "laya/ani/bone/SkinSlotDisplayData" SkinSlotDisplayData attachmentName bones height lengths name texture transfor...

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

765. 1.7.6及以上版本在IOS 9系统中报错,引擎无法正常工作 [ 69%]

...的文件 js、ts项目需找到laya.core.js文件,然后找到if (!oldO)return false;替换为if (!oldO||!oldO.configurable) return false; Context.zip 2017-06-28 1 2 分享 微博 QZONE 微信 cuixueying 赞同来自: 收到,我们测试下,谢谢反馈! 2017-06-28 0 0 分享 微博 QZONE ...

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

766. MovieClip 报错 [ 68%]

...data=Loader.getRes(_url); if (!data) { event(Event.ERROR,"file not find"); return; } //保护修改-----start------------------ var atlasData:Object = Loader.getAtlas(_atlasPath); if(!atlasData) { event(Event.ERROR,"file not find"); return; } //保护修改-----end------------------ this.basePath =_...

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

767. Timer Handler被覆盖 [ 68%]

...) : 0; var mid = method.$_TID || (method.$_TID = (Timer._mid++) * 100000); return this._map[cid + mid]; }   当游戏玩的功能多时间长了,随着caller._$GID的增加,this._map里正在使用的handler被覆盖。 我们游戏有一个战斗的主循环出现了被覆盖的情况,导致...

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

768. Laya ts版,使用jasmine进行单元测试 [ 68%]

...文件,一个是src/Functions.ts,内容为function hello(): string { return 'Hello World!'; } 一个是src/Library/ToolService.ts, 内容为module Library{ export class ToolService{ constructor(){ } public static sum(a:number, b:number):number { return a + b; } } }   一个是 src/Library/UserS...

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

769. Tween.to 中 用Ease.circIn 做 加速运动 能设置初试速度吗 ?默认是 0 能改成别的吗?如果能?怎么改? [ 68%]

...画属性的更改总计。 * @param d 指定运动的持续时间。 * @return 指定时间的插补属性的值。 */ public static function circIn(t:Number, b:Number, c:Number, d:Number):Number { return -c * (Math.sqrt(1 - (t /= d) * t) - 1) b; }   2018-04-09 0 0 分享 微博 QZONE 微信 为...

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

770. 3D模型旋转定位问题 [ 68%]

...2 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 在 oncomplete里面 return ,没加载你就return 当然报错。加载完成之后再操作 2018-01-04 0 4 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 挪一下试试 2018-01-04 0 4 分享 微博 QZONE 微信 为什么被折叠? 0 个...

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