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

大约有 104 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0097 秒)

41. 缓动-缓动函数演示 [ 82%]

... Event = Laya.Event; var List = Laya.List; var Browser = Laya.Browser; var Ease = Laya.Ease; var Handler = Laya.Handler; var Tween = Laya.Tween; var WebGL = Laya.WebGL; var character; var duration = 2000; var tween; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); ...

来源: Laya_示例 发布时间: 20241118

42. 在UI类里调用启动类的静态函数失败了 [ 81%]

...public init(): void { Laya.Tween.to(this.kaishi_btn, { y: 200 }, 800, Laya.Ease.backOut, Laya.Handler.create(this, this.onLogoCompete)); } onLogoCompete(): void { Laya.Tween.to(this.biaoti_lable, { y: 120 }, 800, Laya.Ease.backOut); } onStart(): void { Laya.Tween.to(this.kaishi_btn, { y: 400 }, 800,...

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

43. 多个tween会影响其它精灵事件 [ 81%]

...到原因,   Laya.Tween.to(curBoxObj.resLeft, { scaleY: 1 }, 500, Laya.Ease.elasticOut); Laya.Tween.to(curBoxObj.resRight, { scaleY: 1 }, 500, Laya.Ease.elasticOut); Laya.Tween.to(curBoxObj, { y: curBox.y }, 500, Laya.Ease.elasticOut);   我只要执行下面这句,上面的resRight就播放...

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

44. 再问:tween对象的回收利用 [ 80%]

...值的对象)。 * @param props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为匀速运动。 * @param complete 结...

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

45. popup设置了关闭效果后,窗口关闭但遮罩层没有关掉,请问如何处理 [ 80%]

...id {         Laya.Tween.to(this,{y:Laya.stage.height,alpha:0},200,Laya.Ease.linearIn);              }   import { ui } from "./ui/layaMaxUI"; export default class ShopDialog extends ui.ShopDialogUI { constructor() { super(); this.popupEffect = Laya.Handler.create(this, this.showEffect); t...

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

46. tween有这个一个bug [ 80%]

...te:Laya.Handler.create(point,function(){ this.visible = true; })},800,Laya.Ease.backOut,null,i*400); timeline在一开始还在正常执行, 当有一半左右的ui元素进入到场景时, timeline循环卡住不动了, 等所有ui动画执行完毕, timeline又开始运动         2018-01-18 ...

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

47. laya.effect.FadeOut_API3.0 [ 78%]

...structor Properties _extra _singleton autoDestroyAtComplete delay duration ease eventName owner repeat runInEditor scriptPath target Accessors awaked destroyed enabled hideFlags id Methods _initialize _setOwner destroy hasHideFlag onAdded onAwake onDestroy onDisable onEnable onLateUpdate onPostRende...

来源: Laya3.0_api 发布时间: 20231115

48. laya.effect.FadeIn_API3.0 [ 78%]

...structor Properties _extra _singleton autoDestroyAtComplete delay duration ease eventName owner repeat runInEditor scriptPath target Accessors awaked destroyed enabled hideFlags id Methods _initialize _setOwner destroy hasHideFlag onAdded onAwake onDestroy onDisable onEnable onLateUpdate onPostRende...

来源: Laya3.0_api 发布时间: 20231115

49. Laya.Tween.to [ 77%]

...ween.to Laya.Tween.to(this.arrowImg, {"rotation": destination}, 4000, Laya.Ease.cubicOut, Handler.create(this, ()=> { })); 如何控制Laya.Ease.cubicOut的速度 2018-05-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1...

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

50. 在父sprite中添加子sprite ,移动父Sprite 子sprite为什么不动? [ 75%]

...; // 守护神设置呼吸 Laya.Tween.to(this.angel,{scaleY:0.99},900,Laya.Ease.linearInOut,Handler.create(this,this.angelTween1)); // 飞艇设置浮动 Laya.Tween.to(this.aeroboat,{y:-data.aeroboat[aeroboatLel].h-8},800,Laya.Ease.linearInOut,Handler.create(this,this.aeroboatTween1)); })); this.add...

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