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

大约有 179 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0081 秒)

111. 引擎 TiledMap 居然不支持图块翻转 [ 48%]

...        if (this._spriteNum == 0) {                 Laya.ILaya.timer.frameLoop(3, this, this.animate);                 this._preFrameTime = Laya.ILaya.Browser.now();                 this._frameIndex = 0;                 this._time = 0;                 this...

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

112. laya.display.EffectAnimation_API3.0 [ 47%]

...caleX scaleY scene scrollRect skewX skewY stage staticCache target texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addLabel bubbleEvent callLater clear clearTimer contains customRender ...

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

113. HTTP通信 · LayaAir3.3 · 引擎文档 · LAYABOX [ 46%]

... (progress == 100) { this.logger.text = `当前下载进度: 100%\n`; Laya.timer.clear(this, this.onHttpRequestProgress); console.log("加载进度完成,清除进度事件帧听"); } } /** * 请求完成时触发的响应回调 * @param e 事件对象 */ private onHttpRequestComplete(e: any = nul...

来源: Laya3.0_文档 发布时间: 20251010

114. laya.display.FrameAnimation_API3.0 [ 46%]

...ation scaleX scaleY scene scrollRect skewX skewY stage staticCache texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addLabel bubbleEvent callLater clear clearTimer contains customRender ...

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

115. laya.display.Sprite_API3.0 [ 46%]

...ation scaleX scaleY scene scrollRect skewX skewY stage staticCache texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer contains customRender destroy destroy...

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

116. laya.display.AnimationBase_API3.0 [ 44%]

...ation scaleX scaleY scene scrollRect skewX skewY stage staticCache texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addLabel bubbleEvent callLater clear clearTimer contains customRender ...

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

117. 十几秒以后动画渲染时间变长,帧率变慢,是怎么回事? [ 43%]

...1; } }  }   class GunBox{ public start(): void { // 启动定时器 Laya.timer.frameLoop( 1, this, this.loop ); }   public loop():void { // 遍历BOX中所有的子对象 this._doll_role.dispose( );    }   2018-05-15 添加评论 已悬赏1元 --> 分享 微博 QZONE 微信 没有找到相关...

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

118. laya.ui.ProgressBar_API3.0 [ 42%]

...tage.addChild(progressBar);//将 progressBar 添加到显示列表。 Laya.timer.once(3000, this, changeValue);//设定 3000ms(毫秒)后,执行函数changeValue。 } private function changeValue():void { trace("改变进度条的进度值。"); progressBar.value = 0.6; } private function onCh...

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

119. laya.ui.Dialog_API3.0 [ 42%]

...aleX scaleY scene scene3D scrollRect skewX skewY stage staticCache texture timer top transform url viewport visible width x y zOrder manager root Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent callLater clearTimer close contains custo...

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

120. 位图字体的制作与使用(TypeScript-LayaAir基础篇(TS)-文本) [ 41%]

...位图字体的入口放到位图字体加载回调的注册之后。 Laya.timer.frameOnce(5, this, () => { //使用注册完的位图字体来创建文本 this.createText(this.texturFontName); //把注册完的位图字体绑定给UI组件,否则显示不出来位图字体 this._text.font = this....

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