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

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

1631. Tween下的动画速度如何改变? [ 73%]

Tween下的动画速度如何改变? //转盘!! public function rotateFunc(awards,angle,text):void{ isRotated = true; // Laya.timer.frameLoop(1,this,bian,[angle,text]); //缓动动画 Tween.to(pan,{ rotation: -(720+angle) },5000,Ease.bounceOut(0,0,0,5000),Handler.create(this,function():void{ ...

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

1632. 微信小游戏的50M物理缓存管理(TypeScript-小游戏适配文档-微信小游戏) [ 73%]

...要设置相应的编码,二进制编码为空字符串 */ public static function downLoadFile(fileUrl:String, fileType:String = "",callBack:Handler = null,encoding:String = "ascii"):void ``` #### 3、清除缓存文件 由于微信小游戏的缓存上限是50M物理空间,所以无论自动管...

来源: Laya2.0_文档 发布时间: 20210714

1633. laya.particle.Particle2D_API3.0 [ 73%]

...s type: string Optional data: any Returns void callLater callLater(method: Function, args?: any[]): void Inherited from Node.callLater Defined in laya/display/Node.ts:621 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 see #runCallLater() Pa...

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

1634. laya.media.SoundNode_API3.0 [ 73%]

...s type: string Optional data: any Returns void callLater callLater(method: Function, args?: any[]): void Inherited from Node.callLater Defined in laya/display/Node.ts:621 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 see #runCallLater() Pa...

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

1635. laya.map.GridSprite_API3.0 [ 73%]

...s type: string Optional data: any Returns void callLater callLater(method: Function, args?: any[]): void Inherited from Node.callLater Defined in laya/display/Node.ts:621 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 see #runCallLater() Pa...

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

1636. layaair2-cmd compile 一直报错loader.js:638 throw err; [ 73%]

...r;     ^ Err or: Cannot find module 'remove-trailing-separator'     at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15)     at Function.Module._load (internal/modules/cjs/loader.js:562:25)     at Module.require (internal/modules/cjs/loader.js:692:17)     at require ...

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

1637. UI-Label [ 73%]

...ort laya.ui.Label; import laya.webgl.WebGL; public class UI_Label { public function UI_Label() { // 不支持WebGL时自动切换至Canvas Laya.init(800, 600, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stag...

来源: Laya2.0_示例 发布时间: 20241127

1638. tween如何更改3d物体位置 [ 73%]

...en.to(box.potOld,{     x:1     ,y:2     ,update:new Laya.Handler(box,function(){         this.transform.position = this.potOld;     }) }, ConstValue.animationTime,Laya.Ease.elasticOut,Laya.Handler.create(this, function(){     console.log("complete"); }),ConstValue.animationDelay);   ...

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

1639. 请教Laya.timer.once如何设置回调参数 [ 73%]

...Laya.timer.once如何设置回调参数 看到API文档上描述是 public function once(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 但是照这个写了 Laya.timer.once(800,this,sh,[1,3,4]) 之后,在回调函数sh 里面 收到的不是数组,请...

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

1640. 发微信小游戏音乐不播放,报警告 [ 73%]

...   Laya.SoundManager.playSound("res/sounds/bgm.mp3", 1, new Handler(this, function(){                 console.log("播放完成");             })); 2018-08-08 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 ...

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