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

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

41. tween [ 89%]

...的代码段 BUG就出在 Laya.scaleTimer.once(delay,this,this.firstStart,[target,props,isTo]); if (runNow){ if (delay <=0)this.firstStart(target,props,isTo); else Laya.scaleTimer.once(delay,this,this.firstStart,[target,props,isTo]); }else { this._initProps(target,props,isTo); } 不要再叫我...

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

42. @regClass编译报错! [ 89%]

... var __getOwnPropDesc = Object.getOwnPropertyDescriptor;   var __name = (target, value) => __defProp(target, "name", { value, configurable: true });   var __decorateClass = (decorators, target, key, kind) => {     var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : t...

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

43. setSubPixels画布擦除不掉 [ 88%]

...eight; ctx.size(w,h); ctx.asBitmap = true; // ctx.clearRect(0,0,w,h); let _targets= ctx['_targets']; _targets.start(); ctx.clear(); this.drawTex(ctx,this.bUrl,x,0); // this.drawTex(ctx,this.cUrl,x,0); ctx.flush(); _targets.end(); _targets.restore(); let dt = _targets.getData(0, 0, w, h);//像素数...

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

44. laya.effect.ButtonEffect_API3.0 [ 87%]

...ffect Index Properties backEase effectEase effectScale tweenTime Accessors target Properties backEase backEase: string Defined in laya/effect/ButtonEffect.ts:35 backEase prop {name:backEase,type:ease, tips:"恢复缓动类型"} effectEase effectEase: string Defined in laya/effect/ButtonEffect.ts:30 ...

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

45. laya.spine.ExternalSkin_API3.0 [ 86%]

...n" ExternalSkin Class ExternalSkin Hierarchy ExternalSkin Index Properties target Accessors items source templet Methods flush Properties target target: SpineSkeleton Defined in laya/spine/ExternalSkin.ts:11 Accessors items get items(): ExternalSkinItem[] set items(value: ExternalSkinItem[]): void D...

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

46. 关于Laya.Tween 在3d上的应用与缓动的优化 [ 86%]

...不多说直接上代码 //这里以origin为例,将origin的值变化为target的值,可以对应成3d对象中的vector3         let origin: any = {x:1,y:2,z:3};         let target: any = {x:5,y:8,z:8};         Laya.Tween.to(origin,target,500).update = new La...

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

47. Laya如何使用Promise、async、wait分享! [ 86%]

... 解决方法2:在tsconfig.js中配置添加lib,promise 重点: 在 target 为 es5 或 es6 的时候,TypeScript 会有默认的 lib 列表,这在官⽅⽂档中有详细 说明。 target 定义为 es2017 是为了⽀持 async 函数,但这个配置没有默认 lib 列表,所以 参考...

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

48. Dialog关闭时如何向open他的页面传值? [ 86%]

...监听并传参。 给你的dialog下的按钮监听CLICK事件,通过e.target.name来判断当前点击的是哪个按钮,抛出具体的事件并监听。 myClose.on(Event.CLICK,this,onClicks); myYes.on(Event.CLICK,this,onClicks); myNo.on(Event.CLICK,this,onClicks) } private function onClicks(...

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

49. 在VIVO小游戏中 输入框无法调用起来手机键盘 [ 86%]

...r input:* = nativeInput;   if (_focus !== value) { if (value) { if (input.target) { input.target._focusOut(); } else { _setInputMethod(); } input.target = this;   _focusIn(); console.log("获得焦点...........",input,value) } else { input.target = null; _focusOut(); Browser.document.body.scrollT...

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

50. 分享:避免鼠标快速移动,mouseout和mouseover触发顺序不一致的问题! [ 85%]

...hild(sp2); onAddEvent(sp1); onAddEvent(sp2); } private function onAddEvent(target:Sprite):void { target.on(Event.MOUSE_OVER,this,onMouse); target.on(Event.MOUSE_OUT,this,onMouse); } private function onMouse(e:Event):void { //存储over状态的显示对象的name if(e.type==Event.MOUSE_OVER) { arr.p...

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