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

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

1. 遮罩怎么改变位置宽度?? [ 100%]

...罩 https://ldc.layabox.com/doc/?nav=zh-as-1-3-1 在代码中怎么改变Graphics圆形组件的大小或位置? 2018-12-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 185*****818 赞同来自: 了解下 repa...

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

2. 显示对象的mask缩放为0时遮罩效果不生效 [ 86%]

...testSp = new Laya.Sprite(); testSp.width = 200; testSp.height = 50; testSp.graphics.clear(); testSp.graphics.drawRect(0, 0, testSp.width, testSp.height,'#FF0000'); let tmpMask = new Laya.Sprite(); tmpMask.width = testSp.width; tmpMask.height = testSp.height; tmpMask.graphics.clear(); tmpMask.graphic...

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

3. 【简单跑酷--JS版】---Lv.6 终篇 [ 79%]

...prite(); this.bar = new Sprite(); this.bar.x = 15; this.bar.y = 2; this.bg.graphics.drawTexture(texture1, 0, 0, 180, 21); this.bar.graphics.drawTexture(texture2, 0, 0, 155, 12); this.addChild(this.bg); this.addChild(this.bar); } /** * 修改当前状态 */ _proto.changeValue = function(value){ this....

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

4. 通过循环加载图片问题 [ 77%]

...一个可视对象然后通过addChild方法添加到sprite里,不想用graphics.drawTexture方法,因为那种方法在获得sprite的高度和宽度方面有点问题 2016-10-27 0 0 分享 微博 QZONE 微信 cuixueying 赞同来自: 1、如何在Loaded回调下添加dialog,你可以通过...

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

5. LayaNative2.0 beta3 单像素图片平铺绘制失败 [ 73%]

...test.png");// 此图宽度只有1像素,横着平铺绘制无法显示 p.graphics.fillTexture(tex, 0, 0, 100, tex.height);// 无法显示 p.graphics.drawTexture(tex, 0, 0, 100, tex.height);// 正常显示   忘记说明了,native上显示有问题,网页是正常的 2018-10-25 添加评论 ...

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

6. 图片通过drawTexture平铺出现缝隙 [ 72%]

...t: Texture = Laya.loader.getRes("load/0.png");         this.darwSprite.graphics.drawTexture(t,0,0);         this.darwSprite.graphics.drawTexture(t,176,0);         this.darwSprite.graphics.drawTexture(t,176*2,0);   采用这方式在sprite内部绘制了3个一样的png,每一个宽度...

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

7. 怎么实现border [ 68%]

...复 Laya_XS 赞同来自: 在游戏里对于精灵的border你只能通过graphics来实现,但是整体考虑的话是比较麻烦的,如果你不是游戏项目,不建议你用layaair引擎重现你们的项目,因为用layaair引擎做项目是基于画布canvas,想border的使用还是...

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

8. layaAir如何实现for循环加载多张图片,并且通过事件按比例缩小 [ 59%]

...    var bl:Number=texture.width/texture.height             ape.graphics.drawTexture(texture,0,0,stageWidth/4,stageWidth/4/bl);             apesCtn.addChild(ape);         } 2016-10-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...

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

9. 分享,扩展Laya.Text组件实现简单的富文本 [ 56%]

...gin * @param visibleLineCount */ renderText(begin, visibleLineCount) { var graphics = this.graphics; graphics.clear(true); var ctxFont = (this.italic ? "italic " : "") + (this.bold ? "bold " : "") + this.fontSize + "px " + (Browser.onIPhone ? (laya.display.Text._fontFamilyMap[this.font] || this.font...

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

10. 【简单跑酷--JS版】---Lv.2 类之间的引用以及背景滚动实现 [ 49%]

...ya.display.Sprite(); //将上面的texture纹理绘制到bg图像里面 bg.graphics.drawTexture(texture, 0, 0); //将bg添加到舞台 Laya.stage.addChild(bg);  我们再次刷新页面看看有什么效果   嗯 看来图片出来了~~~不错 现在我们可以开始继续了   //===============...

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