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

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

121. 二进制图片(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 48%]

...]),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

122. laya.display.Animation [ 47%]

...自动更新缓存,只能通过调用reCache方法手动刷新。Sprite texture : Texture 设置一个Texture实例,并显示此图片(如果之前有其他绘制,则会被清除掉)。 等同于graphics.clear();graphics.drawImage(),但性能更高 还可以赋值一个图片地址,...

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

123. laya.display.Animation_API3.0 [ 43%]

...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

124. Animation 的createFrames 使用已经加载的图集缓存动画失败 [ 43%]

...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

125. 打成ios包,运行时显示的测试扫码界面 [ 41%]

... 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

126. 绘制图形 · LayaAir3.0文档 · LAYABOX [ 41%]

...击 + 来创建一个绘制图形命令。选择 创建 填充纹理(FillTextureCmd) 绘制填充纹理,创建后如图8-1所示。 (图8-1) Texture:设置纹理图像。 Position:纹理相对于Sprite对象的位置。 Size:纹理的尺寸,默认使用百分比,也可以取消...

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

127. laya.ani.swf.MovieClip_API3.0 [ 38%]

...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

128. 二进制图片(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 37%]

...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