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

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

1. graphicsfillTexture 圆角图边缘有多出线条 [ 100%]

graphicsfillTexture 圆角图边缘有多出线条 var texture = LoadingManager.instance.getRes("res/progress.png"); var graphics=new Laya.Graphics(); graphics.fillTexture(texture,0,0,texture.width,texture.height,"repeat"); 如果用drawTexture就没问题,因为平铺需求 需要用到fillTe...

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

2. 关于graphics.fillTexture,该api只能填充矩形的,请问有其他方法能填充圆形的吗? [ 95%]

关于graphics.fillTexture,该api只能填充矩形的,请问有其他方法能填充圆形的吗? fillTexture(tex:Texture, x:Number, y:Number, width:Number = 0, height:Number = 0, type:String = repeat, offset:Point = null):void 用该方法实现图片填充效果,但是目前需要用圆...

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

3. sprite.graphics.fillTexture 调用多次,如何在每次调用前清除sprite之前绘制的内容?(像cleanByTexture效果) [ 95%]

sprite.graphics.fillTexture 调用多次,如何在每次调用前清除sprite之前绘制的内容?(像cleanByTexture效果) 2017-08-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来...

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

4. fillTexture使用问题 [ 88%]

fillTexture使用问题 sprite使用drawTexture是可以正常使用的,但是用fillTexture时无任何效果。 class Map extends laya.display.Sprite { static width: number = 1188; static height: number = 594; constructor() { super(); Laya.loader.load("res/images/map_01.png", Laya.Handler.creat...

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

5. WebGL模式下,使用fillTexture填充Sprite,在Sprite移动时,会有间隔线显示并闪烁 [ 85%]

WebGL模式下,使用fillTexture填充Sprite,在Sprite移动时,会有间隔线显示并闪烁 使用Sprite作为背景,且用一张小图fillTexture填充显示,当背景移动时,会显示间隔线且会不停闪烁  this.mapBg = new Laya.Sprite(); this.mapBg.name = "map"; this.mapBg...

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

6. 水漫填充算法(floodfill) [ 78%]

...图片进行纹理像素填充,安卓端微信不正常 关于graphics.fillTexture,该api只能填充矩形的,请问有其他方法能填充圆形的吗? 问一下Sprite里的填充文字如何显示在动画的上方而不是被覆盖? 请问graphic是否支持对回型区域的填充颜...

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

7. 纹理平铺怎么做 [ 67%]

...回复 king 赞同来自: cuixueying 、李政666 、Ace1024 Graphics   fillTexture 2017-02-07 3 0 分享 微博 QZONE 微信 李政666 赞同来自: Ace1024   2019-04-23 1 0 分享 微博 QZONE 微信 Laya_XS 赞同来自: 通过上面说的或在ide里通过filltwxture都可以实现! 2017-02-...

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

8. laya.sprite精灵无缝拼接地图,会出现黑线跟白线,使用laya的2.0.1beta版本 [ 67%]

... { var texture:Laya.Texture = Laya.loader.getRes(this.name); this.graphics.fillTexture(texture,0,0,256,256,"repeat"); // this.texture = texture; } 这样设置 没什么效果~~ 设置那个Canvas也没有效果 2019-03-16 0 0 分享 微博 QZONE 微信 178*****216 赞同来自: 请问解决了吗...

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

9. LayaRender渲染含有多个part的Body存在Bug [ 65%]

...("res/bar.png"); var w = size, h = size/5; sp.pivot(w/2, h/2); sp.graphics.fillTexture(text, 0, 0, w, h); partA = Matter.Bodies.rectangle(x, y, w, h, { isStatic:true, layaSprite:sp, });  sp = new Laya.Sprite(); w = size/5, h=size; sp.pivot(w/2, h/2); sp.graphics.fillTexture(text, 0, 0, w, h); partB...

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

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

...);// 此图宽度只有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