大约有 54 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0071 秒)
...动画,手动制作制作时间轴动画),这样可以避免资源的重复使用 2、你也可以使用龙骨动画,一套龙骨可以制作 多套动作,同时可以实现换装功能(譬如http://layaair.ldc.layabox.com ... leton),动画的具体制作请参考Dragonbones官方的...
来源: Laya_社区 发布时间: 20170909
...on String 动作名称 */ _proto.playAction = function(action){ //如果是重复的动作 不执行 if(this.action == action)return; this.action = action; this.body.play(0, true, this.action); } _proto.onLoop = function(){ } //开始跳 _proto.gotoJump = function(){ this.playAction(Player.JUMP); } ...
来源: Laya_社区 发布时间: 20160801
...on String 动作名称 */ _proto.playAction = function(action){ //如果是重复的动作 不执行 if(this.action == action)return; this.action = action; this.body.play(0, true, this.action); } _proto.onLoop = function(){ //玩家开始下落 this.y += this.vy; this.vy += this.downSpeed; //控制...
来源: Laya_社区 发布时间: 20160801
...完全是两码事。去了解控制台打印变量的工作原理,不要重复发帖。 2024-10-30 0 0 分享 微博 QZONE 微信 Marco ⊙.⊙ 赞同来自: 引擎是否有这样的机制,就是获取的值如果小数位超过一定位数 后就强制归零吗?我认为即便是出现浮点...
来源: Laya_社区 发布时间: 20241030
...ation("GameRole.ani") } } _proto.playAction = function(action){ //如果是重复的动作 不执行 if(this.action == action)return; this.action = action; this.body.play(0, true,this.type+"_" + this.action); } })(); 2018-09-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20180911
...id Inherited from Node.frameLoop Defined in laya/display/Node.ts:588 定时重复执行某函数(基于帧率)。功能同Laya.timer.frameLoop()。 Parameters delay: number 间隔几帧(单位为帧)。 caller: any 执行域(this)。 method: Function 结束时的回调方法。 Default value args: a...
来源: Laya3.0_api 发布时间: 20231115
...下,如图2-6所示。其他后续操作与菜单式安装一样。就不重复介绍了。 (图2-6) 2.3 插件导入安装的提醒 对于Unity还不太熟悉的开发者,需要提醒的是,LayaAir引擎Unity资源导出插件,不是一次导入所有项目通用。在每次创建新的...
来源: Laya3.0_文档 发布时间: 20241109
...色行走路线,通过Tween来执行角色位置改变的 //开启定时重复执行 Laya.timer.loop(40, this, this.loopfun); private loopfun(): void { //resPath,角色需要移动的每个世界坐标位置数组 if (this.resPath && this.index < this.resPathLength) { //AStar寻路位...
来源: Laya3.0_文档 发布时间: 20230303
...method:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行某函数(基于帧率)。功能同Laya.timer.frameLoop()。 Node frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时执行一次某函数(基于帧率)。...
来源: laya_api 发布时间: 20170929
...method:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行某函数(基于帧率)。功能同Laya.timer.frameLoop()。 Node frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时执行一次某函数(基于帧率)。...
来源: Laya2.0_api 发布时间: 20190513