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

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

21. 分享:改变图片皮肤,保持图片原样宽高显示 [ 88%]

... var image:Image; public function LayaAirDemo() { Laya.init(800,600); Laya.loader.load(["bg.jpg","logo.png"],Handler.create(this,onLoaded)); } private function onLoaded():void { image=new Image(); image.skin="logo.png"; Laya.stage.addChild(image); Laya.stage.on(Event.CLICK,this,onClick); } private f...

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

22. Laya2 移除skin未加载完的image后报错 [ 88%]

...rash/Program/trunk/ClientLaya2.0/CarCrash/bin/libs/laya.core.js:889:42) at LoaderManager._endLoad (file:///E:/CarCrash/Program/trunk/ClientLaya2.0/CarCrash/bin/libs/laya.core.js:19128:21) at Loader.onLoaded (file:///E:/CarCrash/Program/trunk/ClientLaya2.0/CarCrash/bin/libs/laya.core.js:19097:21) at ...

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

23. 游戏加载进度失效 [ 88%]

...文本 var asset = [] asset[0] = { url: "res/atlas/run.json", type: Laya.Loader.ATLAS } asset[1] = { url: "res/bg.png", type: Laya.Loader.IMAGE } asset[2] = { url: "res/bg1.png", type: Laya.Loader.IMAGE } asset[3] = { url: "res/bg2.png", type: Laya.Loader.IMAGE } asset[4] = { url: "res/atlas/ui.json...

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

24. laya.net.Loader [ 88%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames LoaderProperties | Methods | Events | Constants Packagelaya.netClasspublic class LoaderInheritanceLoader EventDispatcher Object Loader 类可用来加载文本、JSON、XML、二进制、图像等资源。 Public Properti...

来源: laya_api 发布时间: 20170929

25. TS分离模式设置未打包图片输出目录导出资源无法加载未打包资源 [ 87%]

...出资源无法加载未打包资源 如图设置 修改加载代码 Laya.loader.load([     { url: "res/atlas/comp.atlas", type: Loader.ATLAS },     { url: "unpack/comp/image.png", type: Loader.IMAGE },     { url: "test/TestPage.json", type: Loader.JSON }, ], Handler.create(this, this.on...

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

26. laya.net.Loader [ 87%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames LoaderProperties | Methods | Events | Constants Packagelaya.netClasspublic class LoaderInheritanceLoader EventDispatcher Object Loader 类可用来加载文本、JSON、XML、二进制、图像等资源。 Public Properti...

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

27. Laya.loader.load 教程代码出错 [ 86%]

Laya.loader.load 教程代码出错            package {     import laya.display.Text;     import laya.display.Sprite;     import laya.utils.Handler;     import laya.resource.Texture;     public class LayaSample {         private var img:Sprite ;         p...

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

28. Laya.URL.basePath加载不到网络资源 [ 86%]

...网络资源 var resArray = [ { url: "res/atlas/images.atlas", type : Laya.Loader.ATLAS}, // { url: "res/swf/flash.json", type: Laya.Loader.JSON}, // { url: "images/background.png", type : Laya.Loader.IMAGE}, ];   Laya.loader.load(resArray, Laya.Handler.create(this, this.onLoaded2));   Laya.URL.ba...

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

29. laya.net.Loader_API3.0 [ 86%]

...lic/Protected All Inherited Externals Only exported Menu Globals "laya/net/Loader" Loader Class Loader Loader 类可用来加载文本、JSON、XML、二进制、图像等资源。 Hierarchy EventDispatcher Loader Index Constructors constructor Properties maxLoader retryDelay retryNum ANIMATIONCLIP ...

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

30. Laya.loader.create问题 [ 85%]

Laya.loader.create问题 使用Laya.loader.create方法加载了png图片 之后使用new Laya.Image(url),并添加到舞台,发现场景整个是黑的,未发现图片,而如果没使用Laya.loader.create,而直接new Laya.Image(url)的话,就会出现图片,这是为啥? 2017-05-1...

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