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

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

241. 显示与切换图片(ActionScript-LayaAir基础篇(AS3)-位图) [ 75%]

...Manager中的load()方法和getRes()方法,以及laya.utils.Handler中的create()方法,各方法的参数图3、图4、图5、图6所示: ![图3](img/3.png) (图3) ![图4](img/4.png) (图4) ![图2](img/5.png) (图5) ![图2](img/6.png) (图6) ### 2.2 用drawTexture 加载显示图片的示例 ...

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

242. ToolTip鼠标悬停的使用 [ 75%]

...ya.stage.bgColor="#eeffcc"; Laya.loader.load("res/atlas/comp.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private function onLoaded():void { this._testTip=new TestTipsUI();//务必在Laya.init后去new实例,不可直接在全局变量处实例化 //切记,无论何种鼠标提示方...

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

243. js项目使用缓动类Tween报错 [ 75%]

...o0(); function to0() { Tww.to(this.lis, { alpha: 0.5 }, 500, null, Handler.create(this, to1)); } function to1() { Tww.to(this.lis, { alpha: 1 }, 500, null, Handler.create(this, to0)); } 在AS中是没有问题的。 2018-05-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...

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

244. laya.utils.Tween_API3.0 [ 75%]

...化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 duration: number 花费的时间,单位毫秒。 Default value ease: Function | null = null 缓动类型,默认为匀速运动。 Default value complete: Hand...

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

245. list按钮点击绑定失败问题 [ 75%]

...么设置? 闫小米R • 2020-04-26 21:15 是不是用的 Laya.Handler.create 用new Laya.Handler 就好了 create用一次就回收了

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

246. 怎么清理掉 Sprite3D 相关的缓存资源 [ 75%]

...te3D 相关的缓存资源 通过 lh格式 生成的 Sprite3D, Laya.loader.create(_path, Handler.create(this,OnComplete),null,Sprite3D); 要怎么清理掉他的所有缓存资源? 附件 : --> 2018-05-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

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

247. laya.utils.Tween [ 75%]

...化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。  duration:int — 花费的时间,单位毫秒。  ease:Function (default = null) — 缓动类型,默认为匀速运动。  complete:Handler (default = nu...

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

248. 资源加载问题 [ 75%]

...le(res/scene/scene.ls) extension with: ls.     at LoaderManager.__proto._create (laya.core.js:13205)     at LoaderManager.__proto.create (laya.core.js:13173)     at LayaGame.<anonymous> (LayaGame.ts:60)     at EventHandler.__proto.runWith (laya.core.js:724)     at ResInfo.__proto.eve...

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

249. 滤镜-发光滤镜 [ 75%]

...howall"; Laya.stage.bgColor = "#232628"; Laya.loader.load(apePath, Handler.create(this, setup)); })(); function setup() { createApe(); applayFilter(); } function createApe() { ape = new Sprite(); ape.loadImage(apePath); var texture = Laya.loader.getRes(apePath); ape.x = (Laya.stage.width - texture.w...

来源: Laya_示例 发布时间: 20241119

250. UI-ComboBox [ 75%]

...LE_SHOWALL; Laya.stage.bgColor = "#232628"; Laya.loader.load(skin, Handler.create(this, onLoadComplete)); })(); function onLoadComplete() { var cb = createComboBox(skin); cb.autoSize = true; cb.pos((Laya.stage.width - cb.width) / 2, 100); cb.autoSize = false; } function createComboBox(skin) { var co...

来源: Laya_示例 发布时间: 20241119