大约有 345 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0053 秒)
Laya_社区(246) Laya2.0_文档(28) Laya3.0_api(26) laya_api(12) Laya2.0_api(12) Laya_示例(9) Laya3.0_文档(8) Laya2.0_示例(4)
...1.sk', new Laya.Handler(this, () => { Laya.stage.addChild(spine); spine.play(0, true); })); index.html <html> <head> <meta charset='utf-8' /> <title>XXXXX</title> <meta name='viewport' content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale...
来源: Laya_社区 发布时间: 20181120
...题 刚打开 桌面调试出现报错Uncaught (in promise) DOMException: play() 做好的粒子特效在U3D里循环正常。在LAYA插件里预览跳帧闪烁。序列素材本身也是循环的。但是不知道为什么会跳帧。 为什么ani动画执行的不是按中心点执行的 问题状...
来源: Laya_社区 发布时间: 20191117
...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