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

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

71. 舞台上有个label,我能通过截图保存成图片么 [ 80%]

...ER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,200,"#EEFF00"); var label:Label=new Label(); label.fontSize=60; label.text="666"; label.bold=true; label.color="#000000"; sp.addChild(label); sp.size(200,200); Laya.stage.addChild(sp); Laya.timer.fra...

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

72. CPU优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 80%]

...多种做法,而其间差异很有必要知道。 1. 使用getBounds/ getGraphicBounds。 ```javascript var sp=new Laya.Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` getBounds可以满足多数多数需求,但...

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

73. 资源加载 · LayaAir3.0文档 · LAYABOX [ 80%]

...amp;& (i = 0); //清除sp节点的所有绘图(不含子节点) sp.graphics.clear(); //在sp节点上重绘纹理 sp.graphics.drawTexture(res[i]); i++; }); }); } } 2.2 可带类型的多资源加载方式 假如,多数资源不需要带类型,有的资源又需要用类型区别,该如...

来源: Laya3.0_文档 发布时间: 20241014

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

...mg():void { 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

75. 在父sprite中添加子sprite ,移动父Sprite 子sprite为什么不动? [ 80%]

...l[angelLel].y, data.angel[angelLel].w , data.angel[angelLel].h); this.ball.graphics.drawTexture(tBall, 0,0,548,305); this.tower.graphics.drawTexture(tTower, 0, 0, data.tower[towerLel].w , data.tower[towerLel].h); this.aeroboat.graphics.drawTexture(tAeroboat,0,0, data.aeroboat.w, data.aeroboat.h); th...

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

76. Sp.graphics.drawTexture()中的color参数使用的时候,会概率性导致整个场景中的节点颜色改变成我们使用过的颜色。 [ 80%]

Sp.graphics.drawTexture()中的color参数使用的时候,会概率性导致整个场景中的节点颜色改变成我们使用过的颜色。 没有进行其他操作   Sp.graphics.drawTexture(_PreloadUrl._list.texture.brushworkCommon.texture, pointArr[index].x -  this.DrawControl.radiu...

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

77. LayaAir graphics透明度无效? [ 80%]

LayaAir graphics透明度无效? Sprite对象使用graphics画圆,然后获取Sprite的width,height属性,居然还是0,晕,这正常??? 还有啊,graphics.alpha(0.5)设置图形透明度无效哦。怎么回事? 查看了api是这样的啊。。 2016-10-26 添加评论 免费...

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

78. Laya.loader.load 教程代码出错 [ 79%]

...x.toString() +".bmp";                          img.graphics.clear();             var txture:Texture = Laya.loader.getRes(url);             img.graphics.drawTexture(txture);             img.size(txture.width,txture.height);         }...

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

79. laya.d3.graphics.VertexPositionNormalTexture0Texture1 [ 79%]

... VertexPositionNormalTexture0Texture1Properties | Methods Packagelaya.d3.graphicsClasspublic class VertexPositionNormalTexture0Texture1InheritanceVertexPositionNormalTexture0Texture1 ObjectImplements IVertex VertexPositionNormalTexture 类用于创建位置、法线、纹理顶点结构。 Public ...

来源: laya_api 发布时间: 20170929

80. Sprite-显示图片 [ 79%]

...onkey2Path); let ape2 = new Laya.Sprite(); Laya.stage.addChild(ape2); ape2.graphics.drawTexture(monkey2, 100, 0); })); } } new Sprite_DisplayImage();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Texture = Laya.Texture; import Browser = Laya.Browser; import Handler = La...

来源: Laya2.0_示例 发布时间: 20241118