大约有 72 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...我如何获取实例中对象的属性 // 程序入口 class GameMain { constructor() { Laya.init(600, 400); Laya.ClassUtils.regClass("sp", Reflect); Laya.ClassUtils.getInstance('sp').prototype.name } } new GameMain(); class Reflect { public name: string = "mmmmm"; constructor() { } public write():...
来源: Laya_社区 发布时间: 20181029
... } else { var defaultValue = new property.constructor(); property.cloneTo(defaultValue); keyframeNodeOwner.defaultValue = defaultValue; keyframeNodeOwner.value = new property.co...
来源: Laya_社区 发布时间: 20240517
...项目,在as开发模式下,运行报错 TypeError: Vector3 is not a constructor 运行环境 MacOs 10.13.3 2018-05-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 个回复 海 赞同来自: 最新版本的layaIDE...
来源: Laya_社区 发布时间: 20180507
...item的时候,是不是对item进行实例化了?我想在item实例化constructor里面添加一个参数进去。 2018-02-02 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自:...
来源: Laya_社区 发布时间: 20180202
UI界面发布后的layaUI.max.all.ts文件里的函数认识 constructor(){ super()}和 createChildren():void { super.createChildren(); this.createView(ui.login.HeadUI.uiView); } 是先执行constructor()再执行createChildren()吗?constructor()相当于构造函数,createChildren()是构造...
来源: Laya_社区 发布时间: 20171226
...误 Cannot read property 'displayObject' of null Uncaught TypeError: Class constructor Component cannot be invoked without 'new' 构建APP Android Studio打出的APK 报apploader.js:4515 TypeError: addGlobalValueDefine is not a function 关于graphics.drawTexture方法设置纹理报错TypeError: te...
来源: Laya_社区 发布时间: 20200309
...个类 绑定了这个类后, class TextInputEx extends Laya.TextInput constructor() { console.log("执行了"); super() ; } // 获取焦点 onFocus() : void { console.log("焦点进入"); // 是否缓存初始的文本提示字符串和文本颜色. if (!this.initText) { this.initText = this.text...
来源: Laya_社区 发布时间: 20181012
... // src/MachineCtrl.ts var MachineCtrl = class extends CtrlBase { constructor() { super(); } }; __name(MachineCtrl, "MachineCtrl"); // src/funcccccc.ts var funzzzzz = class { constructor() { } static run(callBack, caller, time) { new M...
来源: Laya_社区 发布时间: 20230608
... MAP_URL:string = 'res/tiled/map.json'; /**地图 */ map: Laya.TiledMap; constructor(){ super(); Laya.loader.create(this.MAP_URL, new Laya.Handler(this, this.onComplete)) } private onComplete(){ this.map = new Laya.TiledMap(); this.map.createMap(this.MAP_URL, new Laya.Rectangle(0,0,Laya.stage.wi...
来源: Laya_社区 发布时间: 20190218
...; import Rectangle = laya.maths.Rectangle export class Interaction_Scale { constructor() { Laya3D.init(640, 1136, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; // Laya.Stat.show(); this.scene = Laya.stage.addChild(new Laya.Scene()) as Laya.Scene; this.camera = this.scene.addChild(new Laya.Cam...
来源: Laya_社区 发布时间: 20170321