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

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

1. Laya.Tween的ease参数应该提供定义参数 [ 100%]

...参数 现在的Laya.Tween中的ease只传递如: Ease.linearIn, Ease.backOut 等。 以 Ease.backOut 为例,  Greensock 的 TweenLite 是通过给 ease 传递 new BackOut(0.8) ,这样,0.8 便可以由用户传递进去,控制BackOut的幅度。 但是 Laya.Tween 的 BackOut ...

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

2. Ease.backOut 函数里面的参数要怎么自定义,求指导? [ 98%]

Ease.backOut 函数里面的参数要怎么自定义,求指导? 2018-03-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 这个可以点进去看源码,然后测试观察结果 201...

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

3. DialogManager设置弹出效果后,第一次能打开,第二次就打不开了。 [ 91%]

...stage.height - dialog.height)/2; Laya.Tween.to(dialog,{y:yy},600,Laya.Ease.backOut); },[],false); this.gameHelpDialog = new view.GameHelpDialog(); 2017-11-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 5 个回复 Monica -...

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

4. 给以个对象绑定两个on方法为什么只能执行一次 ? [ 90%]

...        Laya.Tween.to(this.obj,{scaleY:1.05,scaleX:1.05},100,Laya.Ease.backOut,Laya.Handler.create(this,this.clickEnd));         }         this.obj.on(Laya.Event.CLICK,this,this.init);     }     return BtnFeed; })(); //实例化上面的类 _proto.getFeedBtn = function(){        ...

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

5. laya.utils.Tween [ 89%]

...。  props:Object — 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。  duration:int — 花费的时间,单位毫秒。  ease:Function (default = null) — 缓动类型,默认为匀速运动。  comp...

来源: laya_api 发布时间: 20170929

6. laya.utils.Tween [ 89%]

...。  props:Object — 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。  duration:int — 花费的时间,单位毫秒。  ease:Function (default = null) — 缓动类型,默认为匀速运动。  comp...

来源: Laya2.0_api 发布时间: 20190513

7. laya.utils.Tween_API3.0 [ 88%]

...对象)。 props: any 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 duration: number 花费的时间,单位毫秒。 Default value ease: Function | null = null 缓动类型,默认为匀速运动。 Def...

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

8. Laya.util.Ease这个类是用来配合Tween的,可是怎么使用?没有任何资料啊。 [ 84%]

...容相关的链接 提交 3 个回复 youhong168 赞同来自: shaotianhk backOut () method  public static function backOut(t:Number, b:Number, c:Number, d:Number, s:Number = 1.70158):Number开始运动时是朝目标移动,稍微过冲,再倒转方向回来朝着目标。 Parameters  t:Number...

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

9. 关于缓动函数from的一些问题记录 [ 82%]

...fsetX; letterText.y = 400; Laya.Tween.from(letterText,{y:100},3,Laya .Ease.backOut,new Handler(this,this.onEaseComplete),1,null,true); function onEaseComplete(){ console.log("ease complete"); Laya.stage.addChild(letterText); } ``` 以上的代码主要存在三个问题: 1. from()中的duration和de...

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

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

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

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