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

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

21. Laya.Handler.create 加载图片回调参数问题 [ 80%]

Laya.Handler.create 加载图片回调参数问题 我想在调用loadImage加载图片完成之后把某个参数带到Handler里,但是按网上的说法我一直是失败, 示例代码: //初始化微信小游戏 Laya.MiniAdpter.init(); //程序入口 Laya.init(Laya.Browser.width, Laya.Brows...

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

22. Sprite中的width,height和size(width,height)感觉没作用啊 [ 80%]

... function Init(){ Laya.init(800,600); bg = new laya.display.Sprite(); bg.loadImage("res/bg.png"); bg.pos(0,0); bg.width = 100; bg.height = 100; bg.size(100,100); Laya.stage.addChild(bg); } 2016-07-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容...

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

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

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

24. 精灵 · LayaAir3.0文档 · LAYABOX [ 79%]

...创建完毕,此方法只执行一次 */ onAwake(): void { this.sprite.loadImage("atlas/comp/image.png"); //纹理:图片路径 this.sprite.pos(Laya.stage.width >> 1, Laya.stage.height >> 1); //位置:屏幕中心 this.sprite.x = Laya.stage.width/2; //x、y分别设置位置 this.s...

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

25. RopeJoint代码动态创建 无法设置otherbody等属性 [ 79%]

...r img:Sprite = new Sprite(); //加载显示图片,坐标位于100,50 img.loadImage("res/layabox.png"); img.x=(Laya.stage.width-256)/2; //添加到舞台 Laya.stage.addChild(img); var img2:Sprite = new Sprite(); //加载显示图片,坐标位于100,50 img2.loadImage("res/layabox.png"); img2.x=(La...

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

26. 微信小游戏图片加载不出来 [ 77%]

...背景1 this.bg1 = new Laya.Sprite(); //加载并显示背景图 this.bg1.loadImage("ui/BG/play-bg.png", 0, 0, 720, 5120); //把背景图显示在容器内 this.addChild(this.bg1); //创建背景2 this.bg2 = new Laya.Sprite(); //加载并显示背景图 this.bg2.loadImage("ui/BG/play-bg.png", 0, 0, ...

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

27. drawToCanvas无法截取到有子元素。 [ 77%]

...liqunyang 赞同来自: // test drawToCanvas const sp1 = new Sprite(); sp1.loadImage('bet/cheer_1_3.png'); const sp2 = new Sprite(); sp2.x = 100; sp2.loadImage('bet/cheer_1_4.png'); sp1.addChild(sp2); this.addChild(sp1); const htmlCanvas = sp1.drawToCanvas(640, 200, 0, 0); const canvas = htmlCanvas....

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

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

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

29. 图片加载,却无法显示图片[ 76%]

图片加载,却无法显示图片, 使用loadIMage可以显示图片,但使用graphics.drawTexture()却无法显示图片图片已经预加载了),求解,是最新的layaair引擎不支持graphics.drawTexture()的方法了? 2017-01-17 添加评论 免费帖 --> 分享 微博 QZ...

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

30. Sprite用graphics绘制图形后,mouse_over触发scale显示有问题 [ 75%]

...w(); } private _initView():void { let sprite:Sprite = new Sprite(); sprite.loadImage("res/scene/1001/layer1/qiang.jpg", 100, 100, 100, 100); this.addChild(sprite); sprite = new Sprite(); sprite.graphics.drawCircle(100, 500, 50, "#0000ff"); //sprite.graphics.scale(2, 2); this.addChild(sprite); sprite...

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