大约有 486 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
... class PlayGame extends ui.PlayGameUI { constructor() { super(); init(); } public init ():void { this.bg_img.loadImage("ui/bg.jpg",0,0,Laya.stage.width,Laya.stage.height,Laya.Handler.create(this,this.onComplete)); Laya.stage.on(L...
来源: Laya_社区 发布时间: 20161116
...orDialog = (function () { function selectColorDialog() { SelectColorDialog.super(this); this.name = 'SelectColorDialog'; this.x = 1013; } Laya.class(selectColorDialog, "SelectColorDialog", testUI); return selectColorDialog; }());调用对话框的方法 var dialog = new SelectColorDialog(); dialog.s...
来源: Laya_社区 发布时间: 20180326
... } } } super._setDisplay(value); } 而二次渲染时使用了这个值; tIsHaveGlowFilter = sprite._cacheStyle.hasGlowFilter || false; if (tIsHaveGlowFilter) { ...
来源: Laya_社区 发布时间: 20210629
...ya.events.Event; public class AAA extends Sprite { public function AAA() { super(); this.on(Event.DISPLAY,this,onDisplay); } private function onDisplay():void { alert("display"); } } } 2017-02-14 0 0 分享 微博 QZONE 微信 hfeiop12 赞同来自: 已经解决! 2017-02-14 0 0 分享 微博 QZONE...
来源: Laya_社区 发布时间: 20170210
...xtends Laya.Script { constructor(){ alert("1"); //执行后这里触发了 super();} onEnable(){ alert("2"); //执行后这里触发了 } onclick(){ alert("3"); //执行后点击按钮这里没触发,不知道为什么 //Laya.Scene.open("_game.scene"); } } 2018-10-28 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20181028
...: export default class Start extends Laya.Script { constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,次方法只执行一次 */ onAwake(): void { } /** * 第一次执行update之前执行,只会执行一次 */ onStart(): void { ...
来源: Laya_社区 发布时间: 20181013
类库升级到2.2.0及以上后,没有Laya.superSet和superGet了,有替代方案吗? 如题,之前用Laya.superSet和Laya.superGet做get/set重写的,现在升级版本后没有了,有什么替代的接口或方案吗 2020-02-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20200225
...导致的bug class FrameAnimation extends AnimationBase { constructor() { super(); if (FrameAnimation._sortIndexFun === null) { FrameAnimation._sortIndexFun = MathUtil.sortByKey("index", false, true); } } FrameAnimation初始化时_sortIndexFun 方法没有被赋值 导致_calculateKeyFrames...
来源: Laya_社区 发布时间: 20191115
... public function MainPageController(){ super(); Laya.stage.scaleMode = Stage.SCALE_FULL; Laya.stage.screenMode = Stage.SCREEN_NONE; Scene3D.load("res/model/LayaScene_Car/Conventional/car.ls",...
来源: Laya_社区 发布时间: 20190328
...pt export default class SceneScript extends Laya.Script3D { constructor(){ super(); //用于表现的方法 this.showMsgFunc = null; } //对应unity添加的AnimationEvent的动画事件函数,名字是可以对应上的 ShowMsg() { console.log("ShowMsg"); this.showMsgFunc && this.showMsgFunc(); }...
来源: Laya2.0_文档 发布时间: 20210715