大约有 356 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0050 秒)
Laya_社区(257) Laya2.0_文档(28) Laya3.0_api(26) laya_api(12) Laya2.0_api(12) Laya_示例(9) Laya3.0_文档(8) Laya2.0_示例(4)
...rocessAssertion::acquireSync Failed to acquire RBS assertion 'WebKit Media Playback' for process with PID=26575, error: Error Domain=RBSServiceErrorDomain Code=1 "(originator doesn't have entitlement com.apple.runningboard.assertions.webkit AND originator doesn't have entitlement com.apple.multitask...
来源: Laya_社区 发布时间: 20240525
...跳) 3、玩家悬浮 在之前的教程中 我们有写到Floor.js Player.js MapFloor.js RunGame.js 本节 会在之前的基础上进行细微修改 认真看哈~~ 为了方便测试代码 我们首先要将地板的运动关闭 不然地板一直在动 不太适合我们调试代码 我们...
来源: Laya_社区 发布时间: 20160801
...pine.showSkinByIndex(2);//皮肤ID:1,2 tmpSpine.play("idea",true); }),1); tmpSpine.x = 365; tmpSpine.y = 500; Laya.stage.addChild(tmpSpine); 附件 : --> 6402.zip 2020-03-18 添加评论 免费帖 --> 分享 微...
来源: Laya_社区 发布时间: 20200318
...s.sk = this.te.buildArmature(0); this.sk.x = 400; this.sk.y = 700; this.sk.play(0, true); Laya.stage.addChild(this.sk); } Demo如下: 附件 : --> skTest.zip 2019-03-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 10 个...
来源: Laya_社区 发布时间: 20190320
....uiClasspublic class FrameClipInheritanceFrameClip FrameAnimation AnimationPlayerBase Sprite Node EventDispatcher Object 关键帧动画播放类 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By alpha : Number透明度,值为0-1,默认值...
来源: laya_api 发布时间: 20170422
...video.loop = true; video.load(blob_url); Laya.stage.addChild(video); video.play(); v = video; Laya.timer.once(5000, this, function() { v.destroy(); }); }顺便提供一个简单的修复方法: laya.device.js Line 623: 增加以下代码while(this.videoElement.childElementCount) { this.videoEleme...
来源: Laya_社区 发布时间: 20170515
...(target,{x:100, y:100, scaleX:1, scaleY:1, alpha:1},2000,null,0); timeLine.play(0,true); timeLine.on(Event.COMPLETE,this,this.onComplete); timeLine.on(Event.LABEL, this, this.onLabel); } private function onComplete():void { trace("timeLine complete!!!!"); timeLine.pause(); timeLine.destroy(); // Lay...
来源: Laya_社区 发布时间: 20170327
...x = 0; this.mArmature.y = 0; this.addChild(this.mArmature); this.mArmature.play(this.SWIM_RIGHT_ANI_NAME, true); Laya.timer.frameLoop(1, this, this.swim); } 在大部分浏览器都是OK的,但是在部分浏览器中,骨骼动画并不完整,动画的.sk文件也加载成功。 请问大...
来源: Laya_社区 发布时间: 20161209
...Spine('spine/yasuo.sk', 0); // this._spine.showSkinByIndex(1); this._spine.play('yidonggongji', true); this.testSkePos.addChild(this._spine); //创建一个发光滤镜 var filter: Laya.GlowFilter = new Laya.GlowFilter("#ffff00", 10, 0, 0); //设置滤镜集合为发光滤镜 this._spine.filters = [...
来源: Laya_社区 发布时间: 20181127
...e3D.getComponent(Laya.Animator) as Laya.Animator; //播放攻击状态 ani.play(); chrome 调试: addChild(node) { if (!node || this.destroyed || node === this) return node; if (node._zOrder) this._setBit(Const.H...
来源: Laya_社区 发布时间: 20191203