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

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

171. 支支持多个Texture 拼接成一张图片! [ 75%]

...g 赞同来自: a13121527420 支持,你可以获取多个texture,让sp.graphics.drawTexture(aa),sp.graphics.drawTexture(bb)这样连续去写即可! 2017-03-21 1 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 a13121527420 哇啦哇...

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

172. 设置遮罩(JavaScript-LayaAir基础篇(JS)-位图) [ 75%]

...法绘制图片并添加到舞台 Laya.loader.load(Res,Handler.create(this,graphicsImg)); })(); function graphicsImg() { img = new Sprite(); //获取图片资源,绘制到画布 img.graphics.drawTexture(Laya.loader.getRes(Res),150,50); //添加到舞台 Laya.stage.addChild(img); } })(); ``` 运行...

来源: Laya2.0_文档 发布时间: 20210715

173. laya.map.TileAniSprite [ 75%]

...ge的全局Y轴缩放值(会叠加父亲节点的缩放值)。 Sprite graphics : Graphics绘图对象。封装了绘制位图和矢量图的接口,Sprite所有的绘图操作都通过Graphics来实现的。Sprite height : Number 显示对象的高度,单位为像素,默认为0。 此高...

来源: laya_api 发布时间: 20170929

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

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

175. 画个圆角矩形就这么难? [ 75%]

...],//p1(0,0)为夹角A,(30,0)为端点p2 ];  //绘制圆角矩形 sp.graphics.drawPath(0, 0, path, { fillStyle: fillColor },{"strokeStyle":"#ffffff","lineWidth":"10"});  上面上你们官方的例子,这么写的结果???? 无语。圆角矩形多么常见的功能,为啥提...

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

176. 多重遮罩显示异常 [ 75%]

...ructor() { super(); this.init(); } init() { let bg = new Laya.Sprite(); bg.graphics.drawRect(0, 0, 500, 500, '#aaa'); this.addChild(bg); this.panel = new Laya.Panel(); this.panel.width = 500; this.panel.height = 500; this.panel.vScrollBarSkin = ''; this.panel.hScrollBarSkin = ''; this.addChild(this....

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

177. 动画能类似图片纹理切换一样切换吗? [ 75%]

...片纹理切换一样切换吗? 图片纹理切换的案例代码: ape.graphics.clear(); var texture = Laya.loader.getRes(textureUrl); ape.graphics.drawTexture(texture, 0, 0);   Laya.Animation()这样的动画有类似纹理切换这样的方法吗? 2017-12-05 添加评论 免费帖 --> 分...

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

178. 设置遮罩(TypeScript-LayaAir基础篇(TS)-位图) [ 75%]

...并添加到舞台 Laya.loader.load(this.Res,Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{ this.img = new Laya.Sprite(); //获取图片资源,绘制到画布 this.img.graphics.drawTexture(Laya.loader.getRes(this.Res),150,50); //添加到舞台 Laya.stage.addChild(this....

来源: Laya2.0_文档 发布时间: 20210715

179. 图片通过drawTexture平铺出现缝隙 [ 75%]

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

180. Panel中添加图片无法显示,文本可以 [ 75%]

...r.getRes("comp/image.png");     var ape1 = new Laya.Sprite();     ape1.graphics.drawTexture(t, 0, 0);     Laya.stage.addChild(ape1);     //面板     var panel = new laya.ui.Panel();     panel.width = 500;     panel.height = 500;     panel.x = 200;     var label = new laya.ui.Label...

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