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

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

81. scrollRect, TransformInfo怎么理解 [ 57%]

...理(二)项目调试原理及完美开发调试方案 问下能否用一个tween实现抛物线曲线?不是很理解ease里参数怎么用 tiledMap类createMap()创建地图 如何理解这个viewRect视口区 tiledMap类createMap()创建地图 如何理解这个viewRect视口区 问题状态 最...

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

82. 3d中 缓动往一个点转向并移动的问题 [ 57%]

...实现就行? 最好上传demo 直接在项目上给你改, 或者 用tween 修改 数值,在参数中的update回调中再将这些数值赋给对象的坐标和旋转值。 需求说详细,才好给方案 2018-07-26 0 3 分享 微博 QZONE 微信 谢春 赞同来自: 举个例子:缓动...

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

83. 射线检测-点击行走 [ 56%]

... !== -1) { Laya.Vector3.add(_outHitInfo.position, _offset, _vector3); Laya.Tween.to(_position, {x: _vector3.x, y: _vector3.y, z: _vector3.z}, 500/**,Ease.circIn*/); Laya.Quaternion.lookAt(box.transform.position, _vector3, _upVector3, _quaternion); } }); })();class RayPicking03 { private ray: Laya.Ra...

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

84. 简单的震屏效果 [ 56%]

...tion = Math.random() * 5 * dir + vibrateObj.rotation;         Laya.Tween.to(view, { x: offX, y: offY, rotation: rotation }, 10, Laya.Ease.linearNone, Laya.Handler.create(vibrateObj, function () {             if (loop > count) {                 La...

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

85. 模拟石头下落过程不明抖动 [ 53%]

... 6; i++){ let ball = this.getObj(); ball.x = (i%6) *150 ball.y = -200 Laya.Tween.to( ball,{y: 1500 } ,5000,Laya.Ease.linearOut,Laya.Handler.create(this,this.removeball,[ball])); Laya.stage.addChild( ball ); } } public removeball( ball:Laya.Sprite ){ Laya.stage.removeChild(ball); // console.log("rmov...

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

86. 加载的时候动画会卡 [ 51%]

...prototype.dh = function(){         this.ani1.play(0,true);         Tween.to(this.bigfont,{scaleX:1,scaleY:1},500,Ease.backOut,null,0)         Tween.to(this.smallfont,{y:905},500,null,null,500);         //Tween.to(this.diqiu,{rotation:36000},100000,null,null,500);     }     Lload....

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