大约有 860 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
Laya2.0_文档(437) Laya_社区(294) Laya3.0_api(86) laya_api(20) Laya2.0_api(11) Laya3.0_文档(8) Laya_示例(2) Laya2.0_示例(2)
...12-26 0 0 分享 微博 QZONE 微信 laya21126 赞同来自: tween中有个update方法是可以的 Tween.to(_source, {x:endX, y:endY, update:Handler.create(this, tweenUpdate)},200, null, Handler.create(this, moveComplete)); 2017-12-27 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回...
来源: Laya_社区 发布时间: 20171226
...件全删了的话,客户端会提示联网。 服务端的包里也有update文件夹。但不知道为什么没有更新。 2017-03-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_XS 赞同来自: 你...
来源: Laya_社区 发布时间: 20170309
...client/trunk/bin/libs/laya.physics.js:586:141) at box2d.b2BroadPhase.UpdatePairs (/Users/kahreman/laya/q3_client/trunk/bin/libs/laya.physics.js:308:194) at box2d.b2ContactManager.FindNewContacts (/Users/kahreman/laya/q3_client/trunk/bin/libs/laya.physics.js:584:355) at box2d.b2Worl...
来源: Laya_社区 发布时间: 20190407
...ata at Skeleton.__proto._createGraphics at Skeleton.__proto._update at TimerHandler.__proto.run at Timer.__proto._update at Stage.__proto.render at Stage.__proto._loop at loop 引擎版本1.6.2 我们日志统计到,大量玩家报这个错误 ...
来源: Laya_社区 发布时间: 20170418
...执行ui的延迟动画 Laya.Tween.to(point,{x:point.x,y:point.y,alpha:1,update:Laya.Handler.create(point,function(){ this.visible = true; })},800,Laya.Ease.backOut,null,i*400); timeline在一开始还在正常执行, 当有一半左右的ui元素进入到场景时, timeline循环卡住不动了, ...
来源: Laya_社区 发布时间: 20180118
...osition=0; private function setRotation(value):void { this.rotation=value; update(); } private function setScale(value):void { this.scale = value; update(); } private function setPosition(value):void { this.position = value; update(); } public function update() { console.log('rotation: ' + this.rota...
来源: Laya3.0_文档 发布时间: 20241014
...pt.__super.prototype._initialize.call(this, owner); } CmpScript.prototype._update = function (state) { CmpScript.__super.prototype._update.call(this, state); if (this.owner) { this.x += 1; var translate = new Laya.Vector3(this.x, 500, 0); Laya.Utils3D.convert3DCoordTo2DScreenCoord(translate, convert...
来源: Laya_社区 发布时间: 20161126
...如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为匀速运动。 * @param complete 结束回调函数。 * @param delay 延迟执行时间。 * @...
来源: Laya3.0_文档 发布时间: 20241014
...果你想实现用户选择是否更新的话,你可以选择提供两种update路径,所以需要文档中的操作 2.可以在Fb中二次开发 3.http://ldc.layabox.com/doc/?nav=zh-as-6-2-0你再仔细看下文档吧 2017-12-15 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被...
来源: Laya_社区 发布时间: 20171215
....setName = function(value) { nameLabel.text = value; } Character.prototype.update = function() { this.x += this.speed; if (this.x >= Laya.stage.width + Character.WIDTH) this.x = -Character.WIDTH; } this.createAnimation(images); this.createBloodBar(); this.createNameLabel(); } Laya.class(Character, "...
来源: Laya_示例 发布时间: 20241118