大约有 128 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0062 秒)
Laya_社区(96) Laya2.0_文档(13) Laya3.0_文档(5) laya_api(4) Laya3.0_api(4) Laya2.0_api(4) Laya2.0_示例(1) Laya_示例(1)
...]),null,Loader.IMAGE); } private function showImg(url:String):void { var t:Texture = Laya.loader.getRes(url); var ape:Sprite = new Sprite(); ape.graphics.drawTexture(t,0,0); Laya.stage.addChild(ape); ape.pos(200, 0); } ``` 第三种我们直接创建一个纹理来 ```java private function completeH...
来源: Laya2.0_文档 发布时间: 20210714
...自动更新缓存,只能通过调用reCache方法手动刷新。Sprite texture : Texture 设置一个Texture实例,并显示此图片(如果之前有其他绘制,则会被清除掉)。 等同于graphics.clear();graphics.drawImage(),但性能更高 还可以赋值一个图片地址,...
来源: Laya2.0_api 发布时间: 20190513
...tation scaleX scaleY scene scrollRect skewX skewY source 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 custo...
来源: Laya3.0_api 发布时间: 20231115
...stIndexOf(".")) + "/"; var url:String = directory + name; loadedMap[url] = Texture.create(tPic, obj.frame.x, obj.frame.y, obj.frame.w, obj.frame.h, obj.spriteSourceSize.x, obj.spriteSourceSize.y, obj.sourceSize.w, obj.sourceSize.h); 如果你的json文件中没有meta.prefix,那么地址与json文...
来源: Laya_社区 发布时间: 20160610
... 18:21:21.456287+0800 layabox[3608:626785] getExtension WEBGL_compressed_texture_s3tc 尚未支持 2020-04-22 18:21:21.456724+0800 layabox[3608:626785] getExtension WEBKIT_WEBGL_compressed_texture_s3tc 尚未支持 2020-04-22 18:21:21.457174+0800 layabox[3608:626785]...
来源: Laya_社区 发布时间: 20200422
...击 + 来创建一个绘制图形命令。选择 创建 填充纹理(FillTextureCmd) 绘制填充纹理,创建后如图8-1所示。 (图8-1) Texture:设置纹理图像。 Position:纹理相对于Sprite对象的位置。 Size:纹理的尺寸,默认使用百分比,也可以取消...
来源: Laya3.0_文档 发布时间: 20241014
...tation scaleX scaleY scene scrollRect skewX skewY source stage staticCache texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addLabel bubbleEvent callLater clearTimer contains customRende...
来源: Laya3.0_api 发布时间: 20231115
...new Laya.loader.getRes(url); var ape = new Laya.Sprite(); ape.graphics.drawTexture(t,0,0); Laya.stage.addChild(ape); ape.pos(200,0); } ``` 第三种我们直接创建一个纹理来显示: ```javascript function completeHandler(data){ //加载完成返回的data是arraybuffer //......这里处理...
来源: Laya2.0_文档 发布时间: 20210715