大约有 1,536 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0055 秒)
...colorPicket 的颜色改变回调函数。 Laya.stage.addChild(colorPicket);//将此 colorPicket 对象添加到显示列表。 } private function onChangeColor(colorPicket:ColorPicker):void { trace("当前选择...
来源: Laya_社区 发布时间: 20171120
...出的LH格式粒子特效,加载完成不回调 this.lz = this.sceneP.addChild(Laya.Sprite3D.load("res/h5/LayaScene_Effect/Effect.lh")) as Laya.Sprite3D; this.lz.once(Event.HIERARCHY_LOADED, this,function():void{ console.error("改变大小"); }); 之前是按照ls导出的不回调,你们在...
来源: Laya_社区 发布时间: 20180327
... longgu.pos(dragronX, dragronY); parent.addChild(longgu); longgu.play(0, isLoop); longgu.on(Event.STOPPED, this, function():void { Laya.stage.removeChild(longgu); ...
来源: Laya_社区 发布时间: 20170406
...omponent):void { this.cab.addChild(child); } public function getDevices():Array { return this.cab.getChildren(); } ...
来源: Laya_社区 发布时间: 20180202
...kFun():void { if( clip == null ){ clip = new Clip("1.png",6,6); Laya.stage.addChild(clip); clip.play(); }else{ clip.dispose(); clip = null; } } 2017-11-28 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 lifereset 相关问题 我用lis...
来源: Laya_社区 发布时间: 20171128
....lh", Laya.Handler.create(null, (sprite:Laya.Sprite3D) => { this.mScene.addChild(sprite); sprite.transform.translate(new Laya.Vector3(-0.3, 0, 0)); })); 报错信息laya.d3.js:6573 Uncaught TypeError: Cannot set property 'x' of undefined at AnimationTransform3D.get localRotationEuler [as...
来源: Laya_社区 发布时间: 20200107
...ew LoginView(); loginView.init(); Laya.stage.addChild(loginView); } LoginView.js中的init函数 LoginView.prototype.init = function () { this.btnReg.on(Laya.Event.CLICK, this, this.onBtnReg); this.btnLogin.on(Laya.Event.CLICK...
来源: Laya_社区 发布时间: 20170317
...ownBar() { PauseDialog.super(this); this.name = 'CountdownBar'; Laya.stage.addChild(this); this.zOrder = 100; this.count = 4; this.countLabel.text = '' + this.count; Laya.timer.loop(1000, this, this.countdown); } Laya.class(countdownBar, "CountdownBar", CountdownUI); return countdownBar; }()); Count...
来源: Laya_社区 发布时间: 20171012
...kFun():void { if( clip == null ){ clip = new Clip("1.png",6,6); Laya.stage.addChild(clip); clip.play(); }else{ clip.dispose(); clip = null; } } 请官方给一个解决方案 目前我把weakobject里的数值设置为null了 但感觉官方改比较好! 2017-11-28 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20171128
...quipSkinedMeshSprite3D:Laya.SkinnedMeshSprite3D; this.role3D.getChildAt(0).addChild(equipSkinedMeshSprite3D); equipSkinedMeshSprite3D.transform.scale = new Laya.Vector3(2.54, 2.54, 2.54); 补充: 衣服单独添加到场景没有问题, 添加到人物上,就会出...
来源: Laya_社区 发布时间: 20180905