大约有 60 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0039 秒)
...如果是面板本身绑定runtime并没有用,导出的UI类依然还是extends View,依然还是调用不到基类的函数;会报错:“xxx this variable is not defined”;并且在源码中看到“/*no*/this.xxx()” 最头痛的是自己把extends View改为extends自己写的基...
来源: Laya_社区 发布时间: 20170812
...无法显示二级继承的子类 实例代码 export default class View1 extends Laya.Script { } import View1 from "./View1"; export default class View2 extends View1 { }升级到2.13.0后,在编辑模式属性面板点击【添加组件】按钮,显示的【Code】菜单下只有View1,没...
来源: Laya_社区 发布时间: 20220415
...么情况???都是有设置 mouseThrough=true的,就改动了继承 extends Laya.View可穿透 extends Laya.Panel不可穿透 附件 : --> 2018-04-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 w111436...
来源: Laya_社区 发布时间: 20180426
...e.log("kk22") var View=laya.ui.View; console.log("kk3") //class loading100 extends laya.display.Sprite var loading100=(function(_super){ console.log("kk4") function loading100(){ loading100.__super.call(this); this.load=new loadingUI(); this.addChild(this.load); } console.log("kk5") __class(loading1...
来源: Laya_社区 发布时间: 20170725
...e app{ /** * 登录加载界面 * @author Husz */ export class LoadingView extends Laya.View implements small_lib.ILoadingView那么在GameConfig将会报错 , 因为会自动刷新. 除非采用 , 如下: /** * 登录加载界面 * @author Husz */ export default class LoadingView extends Laya.Vie...
来源: Laya_社区 发布时间: 20181024
....Dialog; import Scene=Laya.Scene; export module ui { export class AttackUI extends View { public btn_attack:Laya.Button; constructor(){ super()} createChildren():void { super.createChildren(); this.loadScene("Attack"); } } } 扩展UI代码: import { ui } from "../ui/layaMaxUI"; export default c...
来源: Laya_社区 发布时间: 20180926
...继承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
...的界面,比如我写了A.ui文件,自动生成一个ts类,class A extends ui.AUI,但是这个ui命名空间并不存在,如果我手动改成extends Laya.View(.ui文件里用的View标签),那么我如何让这个类去使用这个.ui文件呢?就像eui里指定skin一样。 2018-0...
来源: Laya_社区 发布时间: 20180323
...Laya.ClassUtils.regClass; export module ui.test { export class TestSceneUI extends Laya.Scene { public scoreLbl:Laya.Label; public tipLbll:Laya.Label; constructor(){ super()} createChildren():void { super.createChildren(); this.loadScene("test/TestScene"); } } REG("ui...
来源: Laya_社区 发布时间: 20190402
...关的链接 提交 2 个回复 sevennqi 赞同来自: 这个是我改成extends Box: package { import laya.ui.Box; import laya.display.Text; import laya.ui.View; /*[COMPILER OPTIONS:ForcedCompile]*/ public class loading100 extends Box { publ...
来源: Laya_社区 发布时间: 20170725