大约有 13 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
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
...s.fillTexture(texture,0,0,texture.width,texture.height,"repeat"); 如果用drawTexture就没问题,因为平铺需求 需要用到fillTexture,但周边有线条 附件 : --> 2018-09-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...
来源: Laya_社区 发布时间: 20180904
...rawEllipse drawImage drawLine drawLines drawPath drawPie drawPoly drawRect drawTexture drawTextures drawTriangles fillBorderText fillText fillTexture getBounds loadImage removeCmd restore rotate save scale strokeText transform translate create recycle Constructors constructor new GraphicsAni(): Grap...
来源: Laya3.0_api 发布时间: 20231115
...rawEllipse drawImage drawLine drawLines drawPath drawPie drawPoly drawRect drawTexture drawTextures drawTriangles fillBorderText fillText fillTexture getBounds loadImage removeCmd restore rotate save scale setState strokeText transform translate Constructors constructor new AutoBitmap(): AutoBitmap ...
来源: Laya3.0_api 发布时间: 20231115
...有一个图片,宽度为100*100,要画1000*1000,一种方法就是drawTexture(tex,0,0,1000,1000)直接拉伸,另一种方法就是使用fillTexture(tex,0,0,1000,1000,'repeat'),两种模式drawcall不一样,后者高很多。 另外,使用fillTexture,九宫格交界处会有黑线,...
来源: Laya_社区 发布时间: 20190108
...rawEllipse drawImage drawLine drawLines drawPath drawPie drawPoly drawRect drawTexture drawTextures drawTriangles fillBorderText fillText fillTexture getBounds loadImage removeCmd restore rotate save scale strokeText transform translate Constructors constructor new Graphics(): Graphics Defined in la...
来源: Laya3.0_api 发布时间: 20231115
... jacksing888 相关问题 Graphics.cmds切换纹理做动画 图片通过drawTexture平铺出现缝隙 tiledMap api 纹理索引值及TileSetId的含义? clearTextureRes无法恢复(另文本纹理释放有bug,经常出现文本渲染混乱) 纹理截取后内存释放不了 希望加入类似...
来源: Laya_社区 发布时间: 20170207
...lineColor:* = null, lineWidth:Number = 1):void 绘制矩形。 Graphics drawTexture(tex:Texture, x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0, m:Matrix = null, alpha:Number = 1):Array 绘制纹理。 Graphics drawTextures(tex:Texture, pos:Array):void 批量绘制同样纹理...
来源: laya_api 发布时间: 20170929
...raphics.fillTexture(tex, 0, 0, 100, tex.height);// 无法显示 p.graphics.drawTexture(tex, 0, 0, 100, tex.height);// 正常显示 忘记说明了,native上显示有问题,网页是正常的 2018-10-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20181025
...or:* = null, lineWidth:Number = 1):DrawRectCmd 绘制矩形。 Graphics drawTexture(texture:Texture, x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0, matrix:Matrix = null, alpha:Number = 1, color:String = null, blendMode:String = null):DrawTextureCmd 绘制纹理,相比drawImage...
来源: Laya2.0_api 发布时间: 20190513