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

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

141. sprite 和 image 的区别 [ 68%]

...new Laya.Handler有啥区别 碰撞检测 和 sprite问题【js】 image loadimage 加载网络图片BUG dispone和destory的区别 VBOX HBOX 的文档太少了,都不知道这两个怎么用?到底和box有什么区别?不是普通的容器吗?增加了什么功能呢? TrailSprite3D的ALI...

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

142. 如果更换Sprite图片 [ 68%]

如果更换Sprite图片 statusBar = new Sprite(); statusBar.loadImage("7seedkin220161218094632691ru.png@120w.png",0,0, 60,60); statusBar.x = 20; statusBar.y = -70; this.addChild(statusBar); 如何通过动态事件更换Sprite图片? 2017-01-12 添加评论 免费帖 --> 分享 微博 QZONE 微...

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

143. Sprite加载图片 是异步操作吗? [ 68%]

Sprite加载图片 是异步操作吗? this.bg_2.loadImage("background.png"); this.bg_2.pos(0,this.bg_2.height); 这时候 this.bg_2.height 的值打印出来是0 2017-10-02 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1...

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

144. sprite的texture获取后为null [ 67%]

sprite的texture获取后为null loadImage加载sprite后,获取sprite的texture为null。 2016-12-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: sprite的texture本身就是获取...

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

145. Laya3.0 图片拼合缩放会导致两张图片之间有一条横线[已解决] [ 67%]

...d(a)         });          let a = new Laya.Sprite()         a.loadImage("http://103.219.177.59:63344/%2 ... 6quot;)         a.pos(512,0,true)         this.owner.addChild(a)          let b = new Laya.Sprite()         b.loadImage("http://103.219.177.59:63344/%2 ... 6quot;...

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

146. laya.sprite 不接受click事件 [ 67%]

...te.pos(100,150); Laya.stage.addChild(this._firstSprite); this._firstSprite.loadImage('../laya/assets/image/0.jpg'); //this._firstSprite.scale(0.3,0.3); this._firstSprite.size(200,200); //this._firstSprite.pivotX = 0;//设置 sprite 对象的水平方法轴心点坐标。 //this._firstSprite.pivotY =...

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

147. 使用以下代码打开超大分辨率图片 WebGL 模式无法正常显示 [ 67%]

...); //WebGL Laya.Stat.show(0,0); let sp:Laya.Sprite = new Laya.Sprite; //sp.loadImage("comp/big.png"); //读取分辨率小的图片 正常 sp.loadImage("comp/hug.png"); //读取大分辨率图片 无法显示 Laya.stage.addChild(sp); } } new GameMain();//问题描述 客户要求使用LAYA引擎打...

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

148. Laya.Sprite 和 laya.display.Sprite 是一样的吗? [ 66%]

...感觉Scene太重了,只需要Laya.Sprite有什么办法? Laya.Sprite loadImage 参数问题 laya.sprite 不接受click事件 问题状态 最新活动: 2018-01-16 11:04 浏览: 1340 关注: 2 人 Monica • 2018-01-16 11:20 是的

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

149. 【laya2.0】加载并且显示图片,并且让该图片居于舞台中央,怎么写? [ 66%]

...同来自: var logo = new Laya.Sprite(); Laya.stage.addChild(logo); logo.loadImage("res/atlas/test.png", Laya.Handler.create(this, function(){ console.log("complete!!"); logo.x= Laya.stage.width/2-logo.width/2; logo.y= Laya.stage.height/2-logo.height/2; //logo.pos(Laya.stage.width/2-logo.width/2,Lay...

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

150. 父容器为何不响应鼠标事件 [ 66%]

....Sprite = new Laya.Sprite() let father:Laya.Sprite = new Laya.Sprite() son.loadImage("res/me.png",0,0,30,30) father.addChild(son)              Laya.stage.addChild(father) father.x = 100; father.y = 100; father.on(Laya.Event.CLICK,this,this.onTestClick) 然而点击后onTestClick()根本...

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