大约有 3,590 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0074 秒)
Laya_社区(3375) Laya2.0_文档(85) Laya3.0_api(35) Laya_示例(31) Laya2.0_api(20) Laya3.0_文档(18) Laya2.0_示例(14) laya_api(12)
...个原点的动画,类似吹气泡的效果 但我发现laya中,动画animations节点只能在view层级下。然后调用viewObj.ani.play()。而不能在某一个child中指定animations。我现在希望所有精灵下面都有指定的动画,怎么办?是不是laya.ui不支持? 附...
来源: Laya_社区 发布时间: 20170309
...stage.height / 2); Laya.stage.addChild(sp2); Laya.timer.frameLoop(1, this, animate); } function animate(e) { sp1.rotation += 2; sp2.rotation += 2; } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Browser = Laya.Browser; import WebGL = Lay...
来源: Laya_示例 发布时间: 20241119
...umentationAll Packages | All Classes | Index | Frames No Frames RigidAnimationsProperties | Methods | Events Packagelaya.d3.component.animationClasspublic class RigidAnimationsInheritanceRigidAnimations KeyframeAnimations Component3D EventDispatcher Object RigidAnimations 类用于创建变...
来源: laya_api 发布时间: 20170929
...s.ape1); this.ape1.addChild(this.ape2); Laya.timer.frameLoop(1, this, this.animate); } animate() { this.ape1.rotation += 2; this.ape2.rotation -= 4; } } new Sprite_NodeControl();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Browser = Laya.Bro...
来源: Laya2.0_示例 发布时间: 20241119
...cumentationAll Packages | All Classes | Index | Frames No Frames SkinAnimationsProperties | Methods | Events Packagelaya.d3.component.animationClasspublic class SkinAnimationsInheritanceSkinAnimations KeyframeAnimations Component3D EventDispatcher Object SkinAnimations 类用于创建蒙皮...
来源: laya_api 发布时间: 20170929
...问题 LayaBox IDE 支持多开吗 骨骼动画播放完后的回调时间 Animator 如何获取当前所有动画名称呢?或者所有的AnimationClip呢? 关于apk打包动画卡的问题 缓动动画SKEW-Y从0到360卡住 [Laya2.0 3D] 2.0正式版上存在某些骨骼动画无法播放,U3D...
来源: Laya_社区 发布时间: 20190403
...idth / 2 + gap, Laya.stage.height / 2); Laya.timer.frameLoop(1, this, this.animate); } animate() { this.ape1.rotation += 2; this.ape2.rotation += 2; } } new Sprite_Pivot();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Browser = Laya.Browser; ...
来源: Laya2.0_示例 发布时间: 20241119
... 与内容相关的链接 提交 2 个回复 伐木工人 赞同来自: 是Animator动画组建导出有问题,去掉动画组建就可以导出,应该是导出插件的bug。 2017-11-16 0 5 分享 微博 QZONE 微信 183*****755 赞同来自: 暂时不支持。请使用3d建模软件把我红...
来源: Laya_社区 发布时间: 20171116
...stage.bgColor = "#3da8bb"; createCanvases(); Laya.timer.frameLoop(1, this, animate); Laya.stage.on('mousedown', this, onMouseDown); Laya.stage.on('mousemove', this, onMouseMove); Laya.stage.on('mouseup', this, onMouseUp); })(); function createCanvases() { var graphicsCanvas = new Sprite(); Laya.stag...
来源: Laya_示例 发布时间: 20241119
...andler.create(this, onLoaded)); function onLoaded() { //创建一个Animation实例 var tl = new Laya.Animation(); //加载动画文件 tl.loadAnimation("TimeLine.ani"); //添加到舞台 Laya.stage.addChild(tl); //播放Animation动画 tl.pla...
来源: Laya_社区 发布时间: 20171012