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

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

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

...用第一种方式显示图片到舞台; var sp = new Laya.Sprite(); sp.loadImage(url); Laya.stage.addChild(sp);//添加到舞台 } function errorHandler(url){ } ``` 第二种我们可以绘制一个纹理来显示: ```JavaScript function completeHandler(data){ //加载完成返回的data是arra...

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

172. 滤镜的集中实现 [ 62%]

...te(); //添加到舞台 Laya.stage.addChild(Img); //加载显示图片 Img.loadImage("res/tt.png",w,h); return Img; } /**创建红色滤镜位图方法**/ function creteRedFilter(){ //颜色滤镜矩阵,红色 var colorMatrix = [ 1, 0, 0, 0, 0, //R 0, 0, 0, 0, 0, //G 0, 0, 0, 0, 0, //B 0, 0, 0, 1, 0...

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

173. 分享:截屏! [ 62%]

...示对象             sp= new Sprite();             sp.loadImage("logo.png");             Laya.stage.addChild(sp);         }                  private function onClick():void         {             //HTMLCanvas 是 Html Canvas 的代理类,...

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

174. 分享:DrawToCanvas内存释放问题! [ 61%]

...,用于观察Curmem变化 //添加被截屏对象 sp= new Sprite(); sp.loadImage("bg2.png"); Laya.stage.addChild(sp); //创建DrawToCanvas命令按钮 var btnDraw:Sprite=CreateBtn(100,400); btnDraw.on(Event.CLICK,this,onClickBtnDraw); } //创建按钮 private function CreateBtn(xx:int,yy:int):Spri...

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

175. 关于创建Sprite获取大小 [ 61%]

...于创建Sprite获取大小 发现个奇怪的问题,new Laya.Sprite().loadImage() 创建的对象大小不是图像大小,然后用getBounds获取也拿不到真实的大小?    这个建议官方改下接口,理论上width和height用来检测碰撞,那你看到的就应该是碰撞...

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

176. laya.ani.GraphicsAni_API3.0 [ 61%]

...e drawTextures drawTriangles fillBorderText fillText fillTexture getBounds loadImage removeCmd restore rotate save scale strokeText transform translate create recycle Constructors constructor new GraphicsAni(): GraphicsAni Inherited from Graphics.constructor Defined in laya/display/Graphics.ts:54 Re...

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

177. matter中layasprite怎么改变图片大小? [ 61%]

...要定义texture或者layaSprite var roleImg = new Laya.Sprite(); roleImg.loadImage("../xx.png"x,y,width,height);//直接定义roleImg的大小及相对位置 roleImg.zOrder = 2;//还能定义层级,这个层级是与laya直接相关的 role.layaSprite = roleImg; role可以不断传入自定义的...

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

178. 提示“AtlasResourceManager:Dispose the inner Atlas。” [ 60%]

...; function showframe() {     var url = getimage();     this.sp_video.loadImage(url);     }   2017-08-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Monica - 知识达人 赞同来自: 麻烦上传一...

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

179. 输入设备-指南针 [ 60%]

...) { compassImg = new Sprite(); Laya.stage.addChild(compassImg); compassImg.loadImage(compassImgPath); compassImg.pivot(compassImg.width / 2, compassImg.height / 2); compassImg.pos(Laya.stage.width / 2, 400); } function drawUI() { var canvas = new Sprite(); Laya.stage.addChild(canvas); canvas.graphic...

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

180. Laya.Loader.getRes("xxx.png")取出来的资源为什么是Texture2D,不是Texture [ 60%]

...    报错堆栈 TypeError: tex.getIsReady is not a function at Graphics.loadImage (file:///D:/zxl/2.0_stable/lfGame2.0/bin/libs/laya.core.js:11477:26) at Function.createFrames (file:///D:/zxl/2.0_stable/lfGame2.0/bin/libs/laya.core.js:23134:23) at Animation.loadImages (file:///D:/zxl/2.0_stable/l...

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