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

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

711. laya2.0 localStorage语法错误 [ 71%]

laya2.0 localStorage语法错误 Storage.getItem=function(key){ return Storage.support ? Storage.items.getItem(key):null; } Storage.getJSON=function(key){ return JSON.parse(Storage.support ? Storage.items.getItem(key):null); }?:不是js的写法吧... 2018-11-22 添加评论 免费帖 --> 分享 ...

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

712. laya.display.cmd.DrawCurvesCmd_API3.0 [ 71%]

... { height?: number; width: number } Optional height?: number width: number Returns number[] recover recover(): void Defined in laya/display/cmd/DrawCurvesCmd.ts:47 回收到对象池 Returns void Globals "laya/display/cmd/DrawCurvesCmd" DrawCurvesCmd lineColor lineWidth points x y ID getBoundPoints ...

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

713. TypeScript 泛形方法如何传TYPE? [ 71%]

...ode._childs[index].getComponentByType(Laya.Animator); if (element!=null) { return element; }else this.GetComponetInChild(node._childs[index],);   } } 如何写成泛型方法呢???编译不通过 GetComponetInChild<T>(node:laya.display.Node):T { // var s:=typeof(Laya.Animator); for (var ind...

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

714. protobuf.js 转小游戏 动态生成方法报错 [ 71%]

...用了Function,这个怎么解决?  Function.apply(null, keys.concat("return " + source)).apply(null, keys.map(function (key) { return scope[key]; })); 2018-01-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回...

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

715. 微信小游戏白名单MiniAdpter.nativefiles Bug问题!!!!! [ 71%]

...or(var i:number=0;i<list.length;i++) { if(url.indexOf(list[i]) != -1) { return url; } } return ConfigManager.baseUrl + url; } BWUWB • 2019-11-11 18:45 @shiyang:这个方法也可行,多谢! BWUWB • 2019-11-11 18:44 替换这两个库解决了,多谢!

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

716. 文本-Overflow [ 71%]

..., 50); txt.fontSize = 20; txt.color = "#ffffff"; Laya.stage.addChild(txt); return txt; } })()module laya { import Stage = Laya.Stage; import Text = Laya.Text; import Browser = Laya.Browser; import WebGL = Laya.WebGL; export class Text_Overflow { constructor() { // 不支持WebGL时自动切换至Can...

来源: Laya_示例 发布时间: 20241120

717. Laya.Handler.create 加载图片回调参数问题 [ 71%]

..., once:Boolean = true):Handler {             if (_pool.length) return _pool.pop().setTo(caller, method, args, once);             return new Handler(caller, method, args, once);         }   看源码,这个参数应该写在回调方程 加,逗号的后面,这...

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

718. 设置遮罩会导致内存大大增高 [ 71%]

...RTMgr.releaseRT WebGLRTMgr.releaseRT=function(rt){ if (rt._mgrKey <=0) return; rt._disposeResource();// ++ 删除贴图 return; // ++ 返回,下面的不做了 update中尽量要避免设置mask,成本比较高,这个需求也可以通过 graphics的drawTriangles来实现drawTriangles(text...

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

719. UI-Tab [ 71%]

...tab.selectHandler = new Handler(this, onSelect); Laya.stage.addChild(tab); return tab; } function onSelect(index) { console.log("当前选择的标签页索引为 " + index); } })();module laya { import Stage = Laya.Stage; import Tab = Laya.Tab; import Handler = Laya.Handler; import WebGL = Laya.Web...

来源: Laya_示例 发布时间: 20241120

720. Laya2.0 分离模式下自定义VIEW导出UI问题 [ 71%]

.../ui/LayaMaxUI.ts";     if (!fs.existsSync(filePath)) {         return;     }     let fileContent = fs.readFileSync(filePath, "utf8");     fileContent = fileContent.replace(/Laya.BaseView/g, "BaseView");     fs.writeFileSync(filePath, fileContent, "utf8");     return; ...

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