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

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

11. laya.utils.Tween [ 95%]

... clear(tween:Tween):void[static] 清理某个缓动。 Tween  clearAll(target:Object):void[static] 清理指定目标对象上的所有缓动。 Tween  complete():void 立即结束缓动并到终点。 Tween  from(target:*, props:Object, duration:int, ease:Function = null, complete:Handler = ...

来源: laya_api 发布时间: 20170929

12. 颜色滤镜 差值变化 [ 95%]

...*      * 颜色工具类      */ export class ColorTool { private _targetsValue: number = 16777215; private _targetsLastValue: number = null; private targets: Array<Laya.Sprite> = null; public static instance: ColorTool = null; private targetsFilter: Laya.ColorFilter = null; private _p...

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

13. laya.utils.Tween [ 95%]

... clear(tween:Tween):void[static] 清理某个缓动。 Tween  clearAll(target:Object):void[static] 清理指定目标对象上的所有缓动。 Tween  complete():void 立即结束缓动并到终点。 Tween  from(target:*, props:Object, duration:int, ease:Function = null, complete:Handler = ...

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

14. Tween文件内发现一个bug [ 95%]

...有了 //如果对象被销毁,则立即停止缓动 /*[IF-FLASH]*/if (target is Node && target.destroyed) return clearTween(target); //[IF-JS]if (target.destroyed) return clearTween(target); [IF-JS]if (target != null && target.destroyed) return clearTween(target); ? 2017-03-13 添...

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

15. LayaAir的Xcode工程target都是mac平台的 [ 95%]

LayaAir的Xcode工程target都是mac平台的 LayaAir:v1.7.19 【项目限制如此】 LayaNative: v1.0.7 XCode: v11.5   项目就是很简单的一个测试的例子;见图。     导出的设置如图:     但是使用xcode打开就显示target都是mac的;但是XCode11.3上面却正...

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

16. laya.utils.TimeLine [ 94%]

...ype:String, data:* = null):Boolean 派发事件。 EventDispatcher  from(target:*, props:Object, duration:Number, ease:Function = null, offset:Number = 0):TimeLine 从 props 属性,缓动到当前状态。 TimeLine  from(target:*, props:Object, duration:Number, ease:Function = null, offset:Num...

来源: laya_api 发布时间: 20170929

17. laya.utils.Delegate_API3.0 [ 94%]

...e Index Constructors constructor Accessors count Methods add clear clearForTarget invoke once remove Constructors constructor new Delegate(): Delegate Defined in laya/utils/Delegate.ts:5 Returns Delegate Accessors count get count(): number Defined in laya/utils/Delegate.ts:77 Returns number Methods ...

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

18. LayaNative appLoader.js中偶发_targets为undefined的问题 [ 94%]

LayaNative appLoader.js中偶发_targets为undefined的问题 开发的游戏使用LayaNative2.7打包发布后根据JS异常报警器上报数据发现有用户会偶尔出现附件图中所示报错,经查报错内容来至于LayaNative配套的appLoader.js中,搜索“_targets”后发现错...

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

19. 设置cacheAs = bitmap时, drawCanvas 的一个bug [ 94%]

...ar src: Context = canvas.context as Context; var submit: ISubmit; if (src._targets) { //生成渲染结果到src._targets上 /* this._submits[this._submits._length++] = SubmitCanvas.create(src, 0, null); _curSubmit = SubmitBase.RENDERBASE; //画出src._targets //drawTexture(src._targets.target.getTe...

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

20. tsconfig.json中module和target设置为es6,会对发布产生影响么? [ 94%]

tsconfig.json中module和target设置为es6,会对发布产生影响么? 由于项目中想使用set等特性,并且要解决一些module依赖的问题,我们想将tsconfig.json中的module和target都设置为es6。请问这么做后期会有影响么? 谢谢 2018-03-30 添加评论 免...

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