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

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

821. 如何用ts对引擎类进行方法扩展 [ 71%]

...dsSeperator:  declare global { interface Number { thousandsSeperator(): String; } } Number.prototype.thousandsSeperator = function(): string { return Number(this).toString().replace(/\B(?=(\d{3})+(?!\d))/g, ','); } export {};  我用同样的方法尝试了,但是行不通。   请问我的ts...

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

822. LayaAir能做RPG吗?不要问我能不能,因为我已经在做 - 杀意来袭 [ 71%]

...      private mDecorate:Decorate;//装饰器         private mHost: string;         private mPort: number;         private mConnected: boolean;         /** 开启*/         public static OPEN: string = "open";         /** 关闭*/         public static CLOSE: string = ...

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

823. laya.html.HtmlParser_API3.0 [ 71%]

...arser() Defined in laya/html/HtmlParser.ts:14 Methods parse parse(aSource: string, style: TextStyle, out: Array<HtmlElement>, options?: HtmlParseOptions): void Defined in laya/html/HtmlParser.ts:33 Parameters aSource: string style: TextStyle out: Array<HtmlElement> Optional options: Html...

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

824. 希望IDE中label控件进行一些优化 [ 71%]

...系如何调整? 希望给spine增加一个showSlotSkinByName(slotName:String, name:String)方法 问题状态 最新活动: 2017-03-16 10:55 浏览: 906 关注: 2 人

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

825. 关于tiledMap getTileProperties方法的index参数 [ 71%]

...roperties方法的index参数   getTileProperties(index:int, id:int, name:String):* 得到tile自定义属性这个我没太看懂index的意思是地图块索引,这个地图块索引是哪里来的? getTileProperties(index:int, id:int, name:String):* 得到tile自定义属性 2017-12-29 添...

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

826. laya.d3.utils.Utils3D [ 71%]

...转、缩放值计算到结果矩阵数组。 Utils3D  getURLVerion(url:String):String[static] 获取URL版本字符。 Utils3D  getVertexTangentDeclaration(vertexElements:Array):VertexDeclaration[static] Utils3D  mulMatrixByArray(leftArray:Float32Array, leftOffset:int, rightArray:Float32Array...

来源: laya_api 发布时间: 20170929

827. laya.script中怎么设置prop的vector类型的item为res? [ 71%]

...属性可以,代码如下: /** @prop {name: resType, tips:"abc",type:string,accept:res} */ resType:String ="";如果type:vector,怎么设置vector的每个对象是res呢? 2019-10-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...

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

828. 二次开发(TypeScript-LayaNative原生服务-LayaNative进阶) [ 71%]

...//iOS注意函数签名,注意与Android的不同 alert(bridge.call("testString:","hello")); alert(bridge.call("testNumber:",256.0)); alert(bridge.call("testBool:",false)); obj.value = "Hello OC!"; bridge.callWithBack(function(value) { var obj = JSON.parse(value) alert(obj.value); },"testAsyncCall...

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

829. laya接入fairyGUI的时候资源加载方式? [ 71%]

...@param complete * @param progress * @param priority */ public load(resKey: string, otherLoadData: any, complete?: Laya.Handler, progress?: Laya.Handler, priority?: number) { if (priority) { this.priority = priority; } else { this.priority = 1; } if (progress) { progress.once = false; } let loadData:...

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

830. 类未找到方法 [ 71%]

...ivate function requestData():void{ RequestConfig.instance.getRequestConfig(String(0), requestCallback); } private function requestCallback(success:Boolean):void { if(success) { loadingRes(); } } "TypeError: this.loadingRes is not a function\n at RequestConfig.__proto.requestCallback [as _callback] 2...

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