大约有 127 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0044 秒)
Laya_社区(56) Laya3.0_api(17) laya_api(15) Laya2.0_api(15) Laya2.0_文档(7) Laya2.0_示例(7) Laya_示例(7) Laya3.0_文档(3)
...; if (!data){ this.event(/*laya.events.Event.ERROR*/"error","file not find"); return; } // console.log("this['_atlasPath']---->",this['_atlasPath']); ...
来源: Laya_社区 发布时间: 20180615
...3 个回复 zwy363 赞同来自: 谢谢。应该是: layaMonkey.once(Event.HIERARCHY_LOADED, this, function():void{ //获取Animator动画组件 var zombieAnimator = (layaMonkey.getChildAt(0) as Sprite3D).getComponentByType(Animat...
来源: Laya_社区 发布时间: 20180122
...mplet(); this.templet.loadAni("spine/10101001.json"); this.templet.on(Laya.Event.COMPLETE, this, this.parseComplete); this.templet.on(Laya.Event.ERROR, this, this.onError); } private parseComplete(): void { this.skeleton = this.templet.buildArmature(); Laya.stage.addChild(this.skeleton); this.skelet...
来源: Laya_社区 发布时间: 20210813
...gle=new Rectangle(-420,-680,420,680); mArmature.hitArea=rect; mArmature.on(Event.CLICK,this,onClick); 2016-11-22 0 0 分享 微博 QZONE 微信 asdf131 赞同来自: 于一个点为中心播放 : this.mArmature = this.mFactory.buildArmature(0); this.mArmatureSpr.addChild(t...
来源: Laya_社区 发布时间: 20161122
...{ console.log(this.moveKey, this.layer, this.moveMax) this.moveKey.on(Laya.Event.MOUSE_DOWN, this, this.downFun); //记录一开始小圆点的位置,方便鼠标弹起的时候自动返回开始位置 this.moveKey.mode = {x: this.moveKey.x, y: this.moveKey.y} } //按下事件 ModeKey.prototype.do...
来源: Laya_社区 发布时间: 20171030
...l Classes | Index | Frames No Frames MovieClipProperties | Methods | Events Packagelaya.ani.swfClasspublic class MovieClipInheritanceMovieClip Sprite Node EventDispatcher Object MovieClip 用于播放经过工具处理后的 swf 动画。 Public Properties Hide Inherited Public Properties Sho...
来源: laya_api 发布时间: 20170929
...= Laya.stage.height / 2; ufo.play("ludo_ufo_kaishi", false); ufo.once(Laya.Event.STOPPED, this, () => { ufo.play("ludo_ufo_feixing", true); }); ufo.on(Laya.Event.LABEL, this, (e) => { if (e.name == "xiaoshi") { ufo.offAllCaller(this); // ufo.removeSelf(); } }); })); } genSpine(url, hand...
来源: Laya_社区 发布时间: 20220530
...法结束循环 问题原因: 在源码中,play方法中添加了Laya.Event.DISPLAY监听函数:_onDisplay 而_onDisplay函数中,又调用了play()方法,而且是没带参数!!! 这样导致在play方法中,传入的to参数无效!!! 另外分享下自己的修改方...
来源: Laya_社区 发布时间: 20201211
...l Classes | Index | Frames No Frames MovieClipProperties | Methods | Events Packagelaya.ani.swfClasspublic class MovieClipInheritanceMovieClip Sprite Node EventDispatcher Object MovieClip 用于播放经过工具处理后的 swf 动画。 Public Properties Hide Inherited Public Properties Sho...
来源: Laya2.0_api 发布时间: 20190513
...onstructor() { super(); this.once(Laya.Event.DISPLAY, this, this.onCreate); this.once(Laya.Event.UNDISPLAY, this, this.onDestroy); } /** * 加入场景 */ protected onCreate(): void ...
来源: Laya_社区 发布时间: 20181114