大约有 4,102 项符合查询结果, 库内数据总量为 31,625 项。 (搜索耗时: 0.0077 秒)
Laya_社区(3323) Laya2.0_文档(296) Laya_示例(141) Laya2.0_示例(117) Laya3.0_文档(116) Laya3.0_api(94) Laya2.0_api(9) laya_api(6)
加载时间轴动画报错 代码如下: this.ani = new Laya.Animation(); this.ani.loadAtlas("res/atlas/comp.json", Laya.Handler.create(this, showApe)); function showApe(){ this.ani.loadAnimation("TimeLine.ani"); Laya.stage.addChild(this.ani); this.ani.play(); } 运行时报 TypeError:Can...
来源: Laya_社区 发布时间: 20171028
... x:1 ,y:2 ,update:new Laya.Handler(box,function(){ this.transform.position = this.potOld; }) }, ConstValue.animationTime,Laya.Ease.elasticOut,Laya.Handler.create(this, function(){ console.log("complete"); }),ConstValue.animationDelay); 无法直接设置原因...
来源: Laya_社区 发布时间: 20170905
...改方案: 将 CharRender_Canvas 类的 set canvasWidth 方法的 ``` this.ctx.setTransform(1, 0, 0, 1, 0, 0); this.ctx.scale(this.lastScaleX, this.lastScaleY); ``` 修改为 ``` this.ctx.setTransform(this.lastScaleX, 0, 0, this.lastScaleY, 0, 0); ``` 2020-09-17 1 2 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20200901
...地方,转换成全局坐标 var p: Laya.Point = this.localToGlobal(new Laya.Point()); mat.translate(p.x, p.y); var stage: Laya.Stage = Laya.stage; mat.scale(stage._canvasTransform.getScaleX() * this....
来源: Laya_社区 发布时间: 20190822
... 类代码如下: var GameStartView = function () { GameStartView.super(this); this.Start.on(Laya.Event.CLICK, this, this.open); console.log(this.Start); GameStartView.prototype.open = function(){ console.log("Open is ok"); } }; Laya.class(GameStartView,"GameStartView", GameStartUI); 输出:Butt...
来源: Laya_社区 发布时间: 20180213
...享 微博 QZONE 微信 156*****215 赞同来自: Laya.timer.frameLoop(1,this,()=>{ if(this.lastClientWidth!=Laya.Browser.clientWidth){ if(Laya.Browser.clientWidth>Laya.Browser.clientHeight){ ...
来源: Laya_社区 发布时间: 20190514
... _text:Laya.Text; constructor() { super(); } get text():Laya.Text { return this._text; } set text(value) { this._text = value; } /** * 动画状态开始时执行。 */ onStateEnter() { console.log("动画开始播放了"); this._text.text = "动画状态:动画开始播放"; } /** * 动画状态...
来源: Laya2.0_文档 发布时间: 20210715
...ne { constructor() { super(); } createChildren() { super.createChildren(); this.loadScene("test/TestScene"); } } UC指这行报错,这个都是编译后的代码 addScore(value = 1) { this._score += value; this.scoreLbl.changeText("分数:" + this._score); if (this._control.c...
来源: Laya_社区 发布时间: 20190828
...FOCUS=>MOUSE_DOWN=>CLICK,有没有比FOCUS还要先触发的监听 this.textinput_message.on(Laya.Event.CLICK,this,()=>{ console.log("CLICK>>>"); }) this.textinput_message.on(Laya.Event.MOUSE_DOWN,this,()=>{ console.log("MOUSE_DOWN>>>"); }) this.textinput_message.on(Lay...
来源: Laya_社区 发布时间: 20190315
...); let btn:Laya.Button = LayaUtil.GetChildByPath(this.owner, "CreatePanel/BtnCreate"); btn.clickHandler = Laya.Handler.create(this, this.onClickCreate) this.drawGrid(); } onClickCreate() { // ()...
来源: Laya_社区 发布时间: 20231221