• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 356 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0050 秒)

281. [LayaNative2]IOS native打包 webview播放视频 返回后没声音 [ 57%]

...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

282. 【简单跑酷--JS版】---Lv.5 玩家踩地板 [ 57%]

...跳) 3、玩家悬浮   在之前的教程中 我们有写到Floor.js Player.js MapFloor.js RunGame.js 本节 会在之前的基础上进行细微修改 认真看哈~~ 为了方便测试代码 我们首先要将地板的运动关闭 不然地板一直在动 不太适合我们调试代码 我们...

来源: Laya_社区 发布时间: 20160801

283. 通过Spine工具导出缩小了比例,游戏中显示部分节点坐标和比例出错 [ 56%]

...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

284. Skeleton骨骼动画内存泄漏 [ 56%]

...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

285. laya.ui.FrameClip [ 56%]

....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

286. Laya.Video内存泄漏问题 [ 56%]

...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

287. TimeLine调用destroy报错&执行完成后回到起点 [ 56%]

...(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

288. H5页面的骨骼动画不能显示完整,兼容性问题? [ 56%]

...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

289. LayaAir2.0 beta3 对骨骼动画应用发光滤镜的问题 [ 56%]

...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

290. unity导出的3D动画模型,导入 laya环境报错: node._setParent is not a function [ 56%]

...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