大约有 445 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0038 秒)
...发更高效。const WID = 373, HEI = 85; const Box = Laya.Box; class Item extends Box { constructor(){ super(); const Image = Laya.Image; this.size(WID, HEI); this.img = new Image(); this.addChild(this.img); } setImg(src) { this.img.skin = src; } } class UI_List { constructor() { const Browser = La...
来源: Laya2.0_示例 发布时间: 20241119
...继承Laya.Scene BaseScene.tsexport namespace base{ export class BaseScene extends Laya.Scene{ constructor(){ super(); console.log('BaseScene:我是基类BaseScene,我的子类是导出类,我的父类是场景类'); } } } 导出UI 导出后layaMaxUI.ts的内容如下/**This class is automatically...
来源: Laya_社区 发布时间: 20200827
...uglify-js对代码进行压缩有,会有很多重复的一下语句 var __extends = this && this.__extends || function() { var extendStatics = Object.setPrototypeOf || { __proto__: [] }instanceof Array && function(d, b) { d.__proto__ = b } || function(d, b) { for (var p in b) if (b.h...
来源: Laya_社区 发布时间: 20171212
... Calvin 赞同来自: 可以证实的,有如下场景: class PageList extends laya.ui.List { constructor() { super(); } protected initialize():void { super.initialize(); this.itemRender = Pa...
来源: Laya_社区 发布时间: 20180810
...di199553: let myDig:HintView = new HintView(); myDig.popup(true); HintView extends ui.HintViewUI ----- HintViewUI extends Dialog 这样有问题嘛...我这里没有出遮罩的... luck_wan • 2017-12-18 17:54 @wudi199553:用同事的电脑试过可以了,我大概把哪里改错了吧。。。...
来源: Laya_社区 发布时间: 20171218
...。 const { regClass, property } = Laya; @regClass() export class Script extends Laya.Script { @property({ type: Laya.List }) list: Laya.List constructor() { super(); } // 组件被启用后执行,例如节点被添加到舞台后 onEnable(): void { // 给List对象赋值 var data: Array<any>...
来源: Laya3.0_文档 发布时间: 20241014
...0 建议你用fb,fb的纠错能力比较强,几处错误 1、import ui.extends.login; extends是关键字,最好别用做包路径 2、function onAssetLoaded1()你的函数写到包外了,写到上一个大括号内部,保证项目的最后有3个结尾的 } 。 3、login下有错误,建...
来源: Laya_社区 发布时间: 20170504
... const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.OpenDataContextView }) public opendata: Laya.OpenDataContextView; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和...
来源: Laya3.0_文档 发布时间: 20241014
...} from "./RuntimeScript.generated"; @regClass() export class RuntimeScript extends RuntimeScriptBase { onAwake(): void { this.closeBtn.on(Laya.Event.CLICK, this, () => { this.close(); }); } } 1.3.3 关联场景 设置好弹窗之后,需要用代码将Dialog与所需要用到该Dialog的场景...
来源: Laya3.0_文档 发布时间: 20241014
...实现”的“开始页面”这一步的时候,AS新建了GameStart并 extends GameStartUI,然后直接用this改按钮的状态; 问题: 我用JS的时候找了下用class可以实现extends的效果,但不知道怎么写,就是改变不了按钮的状态,请问这块用JS要怎么...
来源: Laya_社区 发布时间: 20171123