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

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

1. Texture内存回收(ActionScript-2D进阶篇(AS3)-性能优化) [ 100%]

...est { private var sp:Sprite; public function ClearTextureResTest() { WebGL.enable(); Laya.init(1000, 800); //显示一个图片 sp = Sprite.fromImage("res/bg.jpg"); Laya.stage.addChild(sp); //显示一个动画 var ani:Animation = new Animation(); ani.loadAtlas("res/fighter.atlas"); ani.play(); ani....

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

2. Texture内存回收(ActionScript-2D进阶篇(AS3)-性能优化) [ 100%]

...est { private var sp:Sprite; public function ClearTextureResTest() { WebGL.enable(); Laya.init(1000, 800); //显示一个图片 sp = Sprite.fromImage("res/bg.jpg"); Laya.stage.addChild(sp); //显示一个动画 var ani:Animation = new Animation(); ani.loadAtlas("res/fighter.atlas"); ani.play(); ani....

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

3. 多线程worker(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 96%]

...ader.workerPath = "libs/worker.js"; //开启worker线程 Laya.WorkerLoader.enable = true; //加载引擎需要的资源 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,onLoaded)); function onLoaded(){ //实例UI界面 var testView = ui.test.TestPageUI(); Laya.stage.addChild(testView...

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

4. 多线程worker(TypeScript-2D进阶篇(TS)-游戏加载策略) [ 95%]

...ader.workerPath = "libs/worker.js"; //开启worker线程 Laya.WorkerLoader.enable = true; //加载引擎需要的资源 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,this.onLoaded)); } private onLoaded():void{ //实例UI界面 var testView:ui.test.TestPageUI = new ui.test.TestPage...

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

5. 多线程worker(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 94%]

...kerLoader.workerPath = "libs/worker.js"; //开启worker线程 WorkerLoader.enable = true; //加载引擎需要的资源 Laya.loader.load([{url: "res/atlas/comp.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); } private function onLoaded():void { //实例UI界面 var testView:TestView = ...

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