大约有 279 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0070 秒)
...独用在其它文件也是没有反应, var LoginView = (function (_super) { function LoginView() { LoginView.super(this); //调用父类构造函数 this.dlg; } function connect() { var hr = new Laya.HttpRequest(); hr.once(Event.PROGRESS, this, onHttpRequestProgress); hr.once(Event.COMPLETE, t...
来源: Laya_社区 发布时间: 20170215
...官方代码? 例如:官方脚本CameraMoveScript.js CameraMoveScript.super(this);这句什么意思?super这东西哪来的?我要怎么查到它的用法? this.lastMouseX = NaN;为什么用this,而不是var lastMouseX = NaN; CameraMoveScript.prototype._update = function (state){...}像...
来源: Laya_社区 发布时间: 20170315
...我用的是1.7.1JS版的function MousePickingScene() { MousePickingScene.super(this); this.ray = new Laya.Ray(new Laya.Vector3(0, 0, 0), new Laya.Vector3(0, 0, 0)); this.point = new Laya.Vector2(); this._outHitInfo = new Laya.RaycastHit(); this.phasorSpriter3D = new Laya.PhasorSpriter3D(); this.cam...
来源: Laya_社区 发布时间: 20170323
...代码(function () { /** * 游戏入口 */ function RunGame(){ RunGame.__super.call(this); this.init(); } //RunGame 是一个显示对象 继承此 Sprite Laya.class(RunGame,"RunGame", laya.display.Sprite); //定义RunGame的prototype var _proto = RunGame.prototype; //初始化 _proto.init = functio...
来源: Laya_社区 发布时间: 20160722
...in(); class tt extends Laya.Node{ constructor(){ super(); } public onAwake():void{ console.log(1111); } } 2.继承Sprite 执行后会有onAwake let t = new tt(); Laya.Scene.root.addChild(t); ...
来源: Laya_社区 发布时间: 20190701
...dule ui { export class MainSceneUI extends Laya.SceneBase { constructor(){ super()} createChildren():void { super.createChildren(); this.loadScene("MainScene"); } } REG("ui.MainSceneUI",MainSceneUI); } 期待生成SceneBase, 结果仍然生成Laya.SceneBase 其他关联链接: https://ask.la...
来源: Laya_社区 发布时间: 20190418
...S:ForcedCompile]*/ yinzhigang12 • 2017-05-27 09:37 坑爹啊,少了个 super(); sawitch • 2017-06-12 11:43 @yinzhigang12:哪里加super();呀?我的分包也遇到这个问题,测试demo包运行没问题,我新建的项目就不行 aubrey0622 • 2017-09-09 10:27 @yinzhigang12:哪里加...
来源: Laya_社区 发布时间: 20160514
...ist":["comp/button.png"],"loadList3D":[]}; constructor(){ super()} createChildren():void { super.createChildren(); this.createView(GameSceneuiUI.uiView); } } REG("ui.GameSceneuiUI",GameS...
来源: Laya_社区 发布时间: 20200228
...ent • 2019-08-28 18:27 class TestSceneUI extends Scene { constructor() { super(); } createChildren() { super.createChildren(); this.loadScene("test/TestScene"); } } UC指这行报错,这个都是编译后的代码 addScore(value = 1) { this._score += value; this.scoreLbl.changeText(&qu...
来源: Laya_社区 发布时间: 20190828
...要重写该类的渲染处理函数 */ var myShaderSprite = (function (_super) { this.iNum = 0; function myShaderSprite() { myShaderSprite.super(this); } Laya.class(myShaderSprite, "myShaderSprite", _super); /* 初始化此类 texture纹理对象 vb顶点数组 ib顶点索引数组 */ myS...
来源: Laya_社区 发布时间: 20180619