大约有 59 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0034 秒)
Laya_社区(40) Laya3.0_api(5) Laya_示例(3) Laya2.0_示例(3) Laya2.0_api(3) laya_api(2) Laya3.0_文档(2) Laya2.0_文档(1)
...ze(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2 , 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); return button; } private function parseComplete(fac:Templet):void { //创建模式为1,可以启用换装 mArmature = mFactory.bui...
来源: Laya_社区 发布时间: 20170406
...ze(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); return button; } //private musicString:string = "./sounds/心跳的证明.mp3"; private musicString:string = "./res/心跳的证明...
来源: Laya_社区 发布时间: 20190421
...绘制文字 ctx.font = settings.font; ctx.fillStyle = settings.color; ctx.fillText(settings.text, 0, (settings.canvasHeight - fontSize) * 0.5); //return canvas.toDataURL(); return ctx.getImageData(0, 0, canvas.width, canvas.height); } } Constantine • 2018-09-10 14:40 @大大大懒猫:十分感谢...
来源: Laya_社区 发布时间: 20180814
...y) { } public static drawText(sp: Laya.Sprite, text: string) { sp.graphics.fillText(text, 0, -20, "20px Arial", "#000000", "center"); } Laya_Aaron • 2018-02-11 15:58 你是如何进行缩放的呢,我缩放了sp 边框也跟着变小 a1748004424 • 2018-02-11 16:41...
来源: Laya_社区 发布时间: 20180211
...play.Graphics 类可以查看到API的各种矢量绘图方法。 drawRect fillText drawPath drawCircle drawPie drawLine drawLines drawPoly drawCurves ...... 下面将对这些Graphics进行讲解。 二、绘制矩形与圆角矩形 2.1 IDE绘制矩形 在Sprite对象的 Graphics 组件中,可以...
来源: Laya3.0_文档 发布时间: 20241014
...TextCmd 在画布上绘制“被填充且镶边的”文本。 Graphics fillText(text:String, x:Number, y:Number, font:String, color:String, textAlign:String):FillTextCmd 在画布上绘制文本。 Graphics fillTexture(texture:Texture, x:Number, y:Number, width:Number = 0, height:Number = 0, ...
来源: Laya2.0_api 发布时间: 20190513
...ing):void 在画布上绘制“被填充且镶边的”文本。 Graphics fillText(text:String, x:Number, y:Number, font:String, color:String, textAlign:String, underLine:int = 0):void 在画布上绘制文本。 Graphics fillTexture(tex:Texture, x:Number, y:Number, width:Number = 0, height:Number...
来源: laya_api 发布时间: 20170929
...erTextCmd 在画布上绘制“被填充且镶边的”文本。 Graphics fillText(text:String, x:Number, y:Number, font:String, color:String, textAlign:String):FillTextCmd 在画布上绘制文本。 Graphics fillTexture(texture:Texture, x:Number, y:Number, width:Number = 0, height:Number = 0, ty...
来源: Laya2.0_api 发布时间: 20190513
...ctxFont, color, style.strokeColor, style.stroke, textAlgin); else graphics.fillText(_word, x, y, ctxFont, color, textAlgin); } //不再是每行绘制一次,而是每行根据关键字绘制多次 nowX += this.getTextWidth(line['text']); } } if (tCurrBitmapFont && tCurrBitmapFont.autoScale...
来源: Laya_社区 发布时间: 20180417