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

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

1. ts加密md5码封装 [ 100%]

...):Md5 { return this._inst ||(this._inst = new Md5()); } public get_md5(str:string):string { return this.md5(str); } split(target: string | any[], step: number, markString: boolean = typeof target === "string") { if (typeof target === "string") target = target.split(""); let result: any[] = target.ma...

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

2. 为什么字符串不能连接? [ 89%]

为什么字符串不能连接? private getRandomColor():String { let arr:Array<String>=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"]; let str:String="#"; for(let i:number=0;i<6;i++){ let index:number=arr.length*Math.random(); str+=arr[index];//在IDE里面这句报...

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

3. socket大型项目回调 [ 85%]

...a{ export class Pomelo{ static DEBUG:boolean = true; static EVENT_IO_ERROR:string = "io-error"; static EVENT_CLOSE:string = "close"; static EVENT_KICK:string = "onKick"; static EVENT_HEART_BEAT_TIMEOUT:string = 'heartbeat timeout'; private JS_WS_CLIENT_TYPE:string = 'js-websocket'; private JS_WS_CLI...

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

4. 将字节数组转为图片 [ 82%]

...ar file:File = File.applicationDirectory;             var picPath:String = file.resolvePath("img.png").nativePath;//获取图片路径             //读取图片文件到字节数组             var readFile:File = new File(picPath);             var readByte:ByteA...

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

5. fatal error: 'string' file not found [ 79%]

fatal error: 'string' file not found 导入头文件 #import <conchRuntime.h> 后编译会报错。望提供解决方案 p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px Menlo; color: #a31515; background-color: #ffffff} span.s1 {color: #0000ff} 附件 : --> 2019-07-25 添加评论 免费...

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

6. 怎样获取浏览器地址传过来的GET参数 [ 76%]

...常多代码,直接拿来用private function getGet():Object { var url:String = __JS__('window.document.location.href.toString()'); var u:* = url.split("?"); if (u[1] is String) { u = u[1].split("&"); var gets:Object = {}; for (var i:String in u) { var j:String = u[i].split("="); gets[j[0]] = ...

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

7. 新手!谁懂得把下面两个文件转成layaair可以运行的代码 [ 74%]

...nterface.available)             {                 var params:String = ExternalInterface.call("getParams");                   if (params.indexOf("?")!=-1)                 {                     var ary:Array = params.split("?");                     va...

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

8. 对游戏中各种控件字体样式使用“白鹭style”样式表 [ 73%]

...没留下…… **/ interface ITextFormat { /** * 背景色 */ bgColor?: string; /** * 是否加粗 */ bold?: number; /** * 文本框背景色 */ borderColor?: string; /** * 文本颜色 */ color?: string; /** * 字体 */ font?: string; /** * 字体大小 */ fontSize?: number; /** * 是否为斜体 ...

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

9. 官方示例图集路径无法加载 [ 71%]

...,就创建多少个动画关键帧  */ private createAniTemplate(name: string, len: number = 8): void {     let aniFrames: Array<string> = [];     for (let i: number = 0; i < len; i++) {         aniFrames.push("resources/UI/role/atlasAni2/139x/" + name + i + ".png");     }   ...

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

10. laya animation播放图片集合,切换时会闪烁一下 [ 67%]

...NE 微信 风信子 赞同来自: private createAnimation(images: Array<string>): Laya.Animation { this.animation = new Laya.Animation(); this.ui.addChild(this.animation); this.animation.loadImages(images); this.animation.interval = 70; this.animation.play(0); return  this.animation } 我不...

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