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

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

1. UI弹窗 · LayaAir3.0文档 · LAYABOX [ 100%]

...(); } ); } private onSkinLoadComplete(e: any = null): void { this.dialog = new Laya.Dialog(); var bg: Laya.Image = new Laya.Image(this.assets[0]); this.dialog.addChild(bg); var button: Laya.Button = new Laya.Button(this.assets[1]); button.name = Laya.Dialog.CLOSE; button.pos(this.DIALOG_WIDTH - this...

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

2. 多线程Worker · LayaAir3.0文档 · LAYABOX [ 96%]

...建一个js文件,放到index.html中。代码如下: var myWorker = new Worker("js/my_task.js"); myWorker.onmessage = function (oEvent) { console.log("Called back by the worker!\n"); }; myWorker.postMessage("start"); // start the worker. 新建一个my_task.js文件,放到js文件夹下,代...

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

3. 弹窗视图组件 · LayaAir3.0文档 · LAYABOX [ 95%]

...log页面: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { //鼠标点击后执行 onMouseClick(): void { //使用Prefab,需要转换根节点为Dialog Laya.loader.load("resources/Prefab2D.lh").then(res => { let dlg: Laya.Dialog = res.create(); dl...

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

4. 位图切片组件 · LayaAir3.0文档 · LAYABOX [ 93%]

...制Clip: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.Clip }) public clip: Laya.Clip; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.clip.pos(Laya.s...

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

5. UI滤镜效果 · LayaAir3.0文档 · LAYABOX [ 93%]

...码如下: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { // 获得Image组件 @property({ type: Laya.Image }) public img: Laya.Image; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): voi...

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

6. 垂直布局容器组件 · LayaAir3.0文档 · LAYABOX [ 92%]

...码如下: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.VBox }) public vbox: Laya.VBox; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.vbox.pos(100,...

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

7. 列表组件 · LayaAir3.0文档 · LAYABOX [ 92%]

...a.List; constructor() { super(); } onAwake(): void { var list: Laya.List = new Laya.List(); list.itemRender = Item; list.repeatX = 1; list.repeatY = 4; list.x = (Laya.stage.width - Item.WID) / 2; list.y = (Laya.stage.height - Item.HEI * list.repeatY) / 2; // 设置List的垂直滚动 list.scrollType...

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

8. 水平布局容器组件 · LayaAir3.0文档 · LAYABOX [ 92%]

...码如下: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.HBox }) public hbox: Laya.HBox; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.hbox.pos(100,...

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

9. 二次开发 · LayaAir3.0文档 · LAYABOX [ 91%]

... void testAsyncCallback(String json) { //js thread try { JSONObject root = new JSONObject(json); Log.d("JSBridge", "java: " + root.getString( "value" )); } catch (JSONException e) { e.printStackTrace(); } m_Handler.post( new Runnable() { public void run() { //ui thread update ui JSONObject obj = new...

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

10. 进度条组件 · LayaAir3.0文档 · LAYABOX [ 90%]

...例代码: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.ProgressBar }) public progressBar: Laya.ProgressBar; @property({ type: Laya.Text }) public loadText: Laya.Text; //组件被激活后执行,此时所有节点和组件...

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