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

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

1161. laya.display.cmd.ClipRectCmd_API3.0 [ 56%]

...ined in laya/display/cmd/ClipRectCmd.ts:18 Y 轴偏移量。 Static ID ID: string = "ClipRect" Defined in laya/display/cmd/ClipRectCmd.ts:8 Methods recover recover(): void Defined in laya/display/cmd/ClipRectCmd.ts:41 回收到对象池 Returns void Globals "laya/display/cmd/ClipRectCmd" ClipRectCmd...

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

1162. ENOENT: no such file or directory, open 'D:\layaidehello eleasewxgameLayaSample.js.map [ 56%]

..._easy_perform failed和JCFileRes::onDownloadError file error fatal error: 'string' file not found Unity3d导出模型时 报错:LayaAir3D UnityPlugin prefab can't export You should check the texture file format add shader include file err, has add:Lighting.glsl,这个问题是什么,我就一...

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

1163. LayaNative 0.9.6启动时报错 [ 56%]

....hk.hokbok I/art:     at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:6682) 2019-07-22 18:03:33.840 27966-27966/com.lovegame.hk.hokbok I/art:     at java.lang.Object java.lang.reflect.Method.invoke!(java.lang.Object, java.lang.Object[]) (Method.java:-2) 2019-07...

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

1164. DOM元素-表单输入 [ 56%]

...ts, [emailInput, birthdayInput, passwordInput]); } private showLabel(label:string, x:number, y:number):void{ var t:Laya.Text = new Laya.Text(); t.height = this.rowHeight; t.valign = "middle"; t.fontSize = 15; t.font = "SimHei"; t.text = label; t.pos(x, y); this.form.addChild(t); } private createInpu...

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

1165. 显示文本组件 · LayaAir3.0文档 · LAYABOX [ 56%]

...ateLabel("#0080FF", "#00FFFF").pos(290, 150); } private createLabel(color: string, strokeColor: string): Laya.Label { const STROKE_WIDTH: number = 4; var label: Laya.Label = new Label(); label.font = "Microsoft YaHei"; label.text = "SAMPLE DEMO"; label.fontSize = 30; label.color = color; if (strokeC...

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

1166. ios 报错 [ 56%]

...nt in obj)  这样的AS转成JS会有问题。要改为 for (var key:String in obj)    2018-02-03 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 daveleay 相关问题 关于近期iOS提交,因违反苹果3.1.1导致APP上架...

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

1167. 怎么实现右键单击显示版本号 [ 56%]

...呢 1、如果是自己实现的话,添加右键单击事件RIGHT_CLICK:String = "rightclick";在回调函数里去实现提示版本号的功能 2、如果是layaAir引擎的版本号,可以直接在控制台输出Laya.version得到   2016-10-10 0 0 分享 微博 QZONE 微信 为什么被折...

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

1168. 音频-播放演示 [ 55%]

...ton.on(Event.CLICK, this, this.onPlayMusic); } private createButton(label: string): Sprite { var w: number = 110; var h: number = 40; var button: Sprite = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFF...

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

1169. AS语言 怎么调用MD5加密? [ 55%]

...?还有正则判断? private static function RegExpFunc(reg:RegExp,str:String):Boolean { var p:RegExp=reg; return p.test(str) ; } 2017-03-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_XS 赞同来自:...

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

1170. ts如何解析ArrayBuffer二进制数据? [ 55%]

...链接 提交 1 个回复 贾如初见 赞同来自: [code]function uintToString(uintArray) { var encodedString = String.fromCharCode.apply(null, uintArray), decodedString = decodeURIComponent(escape(atob(encodedString))); return decodedString;} JS可以通过这个方法解析 但是 ts不可以使...

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