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

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

51. sprite添加click监听事件反应迟钝 [ 73%]

...awyuan.graphics.drawCircle(0,0,50,"#232628");//反应非常迟钝 drawyuan.loadImage("../laya/assets/comp/textinput.png");//反应没有问题 drawyuan.size(100, 100); var x = Math.random() * Laya.stage.width; var y = Math.random() * Laya.stage.height; console.log(x + "" + y); drawyuan.pos(x,y); ret...

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

52. 没有预加载的图片怎么获取width和height ? [ 72%]

...交 2 个回复 浪货界扛把子 赞同来自: cuixueying 给精灵设置loadimage后不能直接获取它的大小;   问题:是不是只有加载完图片在能真正获取他的width和height?   本人当前解决方法:提前加载资源,在回调中进行操作设置 text_load_wid...

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

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

...同来自: 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

54. Laya2.3.0设置basePath后,打包微信Laya.Texture2D.load图片失败 [ 71%]

...ya.wxmini.js中MinAspter的init方法里添加一行Laya.Loader.prototype._loadImage = MiniImage.prototype._loadImage;即可正常 附件 : --> 2019-12-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron ...

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

55. 创建多个Sprite对象后,再次取出来的时候坐标全为0,0高宽跟创建时的也不一样 [ 70%]

...bg_" + nums; userBoxSprite.addChild(sb); userBoxSprite.addChild(sp); // sb.loadImage(newBg1, x, y, singleWidth, singleHeight); sb.skin = newBg1; sb.pos(x,y); sb.size(singleWidth, singleHeight); // sp.loadImage(imgUrl, x, y, singleWidth, singleHeight); sp.skin = imgUrl; sp.pos(x,y); sp.size(singleWid...

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

56. 获取sprite对象的 width和height为0 [ 70%]

...t:Laya.Sprite; constructor() { super() this.bt = new Laya.Sprite() this.bt.loadImage("res/boat.png") this.addChild(this.bt) } } /** * 游戏背景 */ class BackGround extends Laya.Sprite { //背景图 private bg:Laya.Sprite; constructor(){ super(); this.init(); } init():void{ this.bg = new Laya.Spri...

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

57. 关于stage的size问题 [ 69%]

...aded)); function onLoaded(): void { var sprite = new Laya.Sprite(); sprite.loadImage('comp/bg.png'); Laya.stage.addChild(sprite); } 上面这段代码如果把Laya.stage.size这行的注释去掉,运行时不能正常显示图片。请问下对stage是否有大小限制,如何放开这个限制...

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

58. 通过循环加载图片问题 [ 69%]

...以用addchild添加的显示对象 cuixueying • 2016-10-27 21:38 直接loadImage就可以了

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

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

...); //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

60. 3d场景下面有张2d的图片,当鼠标焦点不在该网页时,2d图片为啥会闪动 [ 68%]

...      var sprite0:Sprite = new Sprite();             sprite0.loadImage("creatRoom/background_bk.png");             sprite0.pos(0,0 );             sprite0.cacheAsBitmap = true;             Laya.stage.addChildAt(sprite0,0);                       ...

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