大约有 478 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0043 秒)
Laya_社区(257) Laya3.0_api(65) laya_api(64) Laya2.0_api(59) Laya2.0_文档(12) Laya2.0_示例(8) Laya_示例(8) Laya3.0_文档(5)
...l Classes | Index | Frames No Frames IVertexProperties Packagelaya.d3.graphicsInterfacepublic interface IVertexImplementors VertexGlitter, VertexParticle, VertexPosition, VertexPositionNTBTexture, VertexPositionNTBTexture0Texture1Skin, VertexPositionNTBTextureSkin, VertexPositionNormal, VertexP...
来源: laya_api 发布时间: 20170929
...t.y = 0; top_rect.size(100, 100); top_rect.graphics.drawRect(0, 0, 100, 100, "#0000FF", "#000000", 1); Laya.stage.addChild(top_rect); let rect_bottom: Laya.Sprite = new Laya.Sprite(); rect_bottom.x = 0; ...
来源: Laya_社区 发布时间: 20190730
...I DocumentationAll Packages | All Classes | Index | Frames No Frames GraphicsProperties | Methods Packagelaya.displayClasspublic class GraphicsInheritanceGraphics ObjectSubclasses AutoBitmap, GraphicsGL Graphics 类用于创建绘图显示对象。Graphics可以同时绘制多个位图或者...
来源: laya_api 发布时间: 20170929
...ormalColorTexture0Texture1SkinTangentProperties | Methods Packagelaya.d3.graphicsClasspublic class VertexPositionNormalColorTexture0Texture1SkinTangentInheritanceVertexPositionNormalColorTexture0Texture1SkinTangent ObjectImplements IVertex VertexPositionNormalTextureSkin 类用于创建位置、...
来源: laya_api 发布时间: 20170929
graphics.drawTexture 有问题,紧急! 我想实现一个矢量画图功能,但是单纯的使用graphics.drawLine会发现DrawCall的指数会不断增多,为了优化相处了一个方案。 没画完一条线都将此画布drawToCanvas转成一个Texture,再clear这个画布,然...
来源: Laya_社区 发布时间: 20170724
...rite = new Sprite(); var t:Texture = Laya.loader.getRes("res/bg.png"); ape.graphics.drawTexture(t,0,0); var t1:Texture = Laya.loader.getRes("res/wzq.png"); ape.graphics.drawTexture(t1,0,0); var t2:Texture = Laya.loader.getRes("res/rkfb.png"); ape.graphics.drawTexture(t2,0,0); var t3:Texture = Laya.l...
来源: Laya_社区 发布时间: 20180605
graphics 问题 安装论坛里面的alpha的设置,下面代码不起作用 img.graphics.save() img.graphics.transform(m) img.graphics.restore() 如果只留下第二行,那么transform效果将影响其他对象 2017-06-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20170609
...unction CreateBtn(xx:int,yy:int):Sprite { var btn:Sprite=new Sprite(); btn.graphics.drawRect(0,0,200,50,"#FF0000"); btn.pos(100,400); var text:Text=new Text(); text.text="Draw"; btn.addChild(text); Laya.stage.addChild(btn); btn.size(200,50); return btn; } //点击DrawToCanvas按钮,进行截屏 pr...
来源: Laya_社区 发布时间: 20170822
...游戏开发基础,本篇从API到示例分别介绍Sprite.loadImage与Graphics.drawTexture两种显示图片的方法。 ## 1、用loadImage方法显示与切换图片 ### 1.1 loadImage API概述 在API文档中搜索laya.display.Sprite,可以找到loadImage()方法,如图1所示,我们先...
来源: Laya2.0_文档 发布时间: 20210715
同一个Graphics里面绘制超过20000个矢量rect的情况下,Uncaught Error: IBQuadrangle count 顶点数超过65535 / 4会抛出错误这个知道,有没有办法绕开这个报错 尝试过draw 10000个点的时候,把a的纹理取出来重新绘制,但是好像没有效果 var a:Spr...
来源: Laya_社区 发布时间: 20181113