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

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

31. UI-List [ 78%]

...发更高效。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

32. 分享:关于自定义场景继承的实现 [ 78%]

...继承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

33. ts继承后,代码压缩的问题 [ 77%]

...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

34. 升级引擎到1.7.19.1beta List报错问题 [ 77%]

... Calvin 赞同来自: 可以证实的,有如下场景: class PageList extends laya.ui.List {        constructor()      {           super();       }        protected initialize():void        {              super.initialize();              this.itemRender = Pa...

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

35. 请问打开一个UI后,怎么屏蔽其他UI的点击呢? [ 77%]

...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

36. 列表组件 · LayaAir3.0文档 · LAYABOX [ 77%]

...。 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&gt...

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

37. 刚换到as3 这个地方不明白 [ 77%]

...0 建议你用fb,fb的纠错能力比较强,几处错误 1、import ui.extends.login; extends是关键字,最好别用做包路径 2、function onAssetLoaded1()你的函数写到包外了,写到上一个大括号内部,保证项目的最后有3个结尾的 } 。 3、login下有错误,建...

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

38. 开放数据域组件 · LayaAir3.0文档 · LAYABOX [ 77%]

... 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

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

...} 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

40. 微信飞机大战中“开始页面”逻辑功能关于js继承问题 [ 76%]

...实现”的“开始页面”这一步的时候,AS新建了GameStart并 extends GameStartUI,然后直接用this改按钮的状态; 问题: 我用JS的时候找了下用class可以实现extends的效果,但不知道怎么写,就是改变不了按钮的状态,请问这块用JS要怎么...

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