大约有 191 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0039 秒)
Laya_社区(110) laya_api(29) Laya2.0_api(27) Laya3.0_文档(7) Laya2.0_文档(6) Laya3.0_api(4) Laya2.0_示例(4) Laya_示例(4)
...单击assets,找到Create,点击Prefab 2D,右键单击View,点击Change Type点击UI,点击Dialog即可创建完毕,如图3、动图4所示。创建完毕之后,需要用代码将Dialog与所需要用到该Dialog的场景管关联起来,以下代码块为例。 Laya.Scene.open("Prefa...
来源: Laya3.0_文档 发布时间: 20230303
...简单地显示一行字。为了迎合这一需求,Text提供的名为changeText的方法可以直接跳过排版。 ```typescript this.text.text="text"; Laya.stage.addChild(this.text); //后面只是更新文字内容,使用changeText能提高性能 this.text.changeText("text changed."); ``` T...
来源: Laya2.0_文档 发布时间: 20210714
...简单地显示一行字。为了迎合这一需求,Text提供的名为changeText的方法可以直接跳过排版。 ```javascript var txt:Text = new Text(); txt.text = "text"; Laya.stage.addChild(txt); //后面只是更新文字内容,使用changeText能提高性能 txt.changeText("text...
来源: Laya2.0_文档 发布时间: 20210715
...z I/0: >>>>>>>>>>>>>The network has changed 04-18 17:26:51.251 1371-1371/com.etvtech.pvsz I/0: connected type=5 04-18 17:26:51.251 1371-1384/com.etvtech.pvsz E/AndroidRuntime: FATAL EXCEPTION: GLThread 72 Process: com.etvtech.pvsz, PID: 1371 java....
来源: Laya_社区 发布时间: 20190418
...i - as3、as2、h5 赞同来自: cuixueying 使用原生js里监听input的change事件实现上传,把上传的文件url传递給laya。 缘于laya目前没有上传功能,只能借助原生js上传功能来架桥实现。 请看我的这个作品:http://ask.layabox.com/question/4467 2017-05-...
来源: Laya_社区 发布时间: 20170511
...; lang(a[0],p); }else if(a.length == 1){ lang(a[0]); }else { lang(""); } isChanged = true; event(Event.CHANGE); } }public function lang(text:String, args:Array = null):void { text = langPacks && langPacks[text] ? langPacks[text] : text; if (!args || args.length <= 0) { this._text = text; ...
来源: Laya_社区 发布时间: 20180820
... (CST) -------------------------------------- [09:09:53] Working directory changed to /Applications/LayaAirIDE_beta.app/Contents/Resources/app [09:09:54] Using gulpfile ~/projects/mylaya11/Tank/.laya/compile.js [09:09:54] Starting 'compile'... { Error: /Users/xxxxx/projects/mylaya11/Tank/src/script/...
来源: Laya_社区 发布时间: 20200311
... App Store because it can lead to a poor user experience should these APIs change. Continuing to use or conceal non-public APIs in future submissions of this app may result in the termination of your Apple Developer account, as well as removal of all associated apps from the App Store. 2018-02-...
来源: Laya_社区 发布时间: 20180225
...ckBox添加事件使其能够切换标签 if (i == 0) { cb.y += 20; cb.on("change", this, this.updateLabel, [cb]); this.updateLabel(cb); } } } } private createCheckBox(skin: string): Laya.CheckBox { let cb: Laya.CheckBox = new Laya.CheckBox(skin); this.owner.addChild(cb); cb.labelColors = "white"; c...
来源: Laya3.0_文档 发布时间: 20241014
...被显示在屏幕之前调用,一般用于延迟计算数据。 Node changeText(text:String):void[override] Input clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对...
来源: Laya2.0_api 发布时间: 20190513