大约有 245 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
...Protected All Inherited Externals Only exported Menu Globals "laya/display/Graphics" Graphics Class Graphics Graphics 类用于创建绘图显示对象。Graphics可以同时绘制多个位图或者矢量图,还可以结合save,restore,transform,scale,rotate,translate,alpha等指令对...
来源: Laya3.0_api 发布时间: 20231115
...了位置,宽高及九宫格的处理,供UI组件使用。 Hierarchy Graphics AutoBitmap Index Constructors constructor Properties _color uv Accessors cmds color height sizeGrid source width Methods addCmd alpha clear clipRect destroy drawCircle drawCurves drawEllipse drawImage drawLine drawLine...
来源: Laya3.0_api 发布时间: 20231115
...aya这几个与清除有关的总也闹不清,sprite的destory 与 graphics下的clear 以及 父元素removechild 的方法都能达到清理sprite的效果,有的时候都不知道用哪个会不占内存,哪个不用再重新建实例,api的太简略,能不能详细回答...
来源: Laya_社区 发布时间: 20171221
分享一个Graphics画圆角矩形的封装 圆角矩形实践中用得频繁,做了一个封装分享出来,TS版本的,分2步: 1、在项目的libs目录中新建一个d.ts,写入画圆角矩形的函数声明 declare namespace laya.display { interface Graphics { ...
来源: Laya_社区 发布时间: 20210123
UI编辑界面中的Graphics(续) 添加在Sprite上的Graphics无法获取(但Graphics上有个name属性)?需要改变这个Graphics只能通过Sprite重新draw? 2018-03-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...
来源: Laya_社区 发布时间: 20180309
...test.png");// 此图宽度只有1像素,横着平铺绘制无法显示 p.graphics.fillTexture(tex, 0, 0, 100, tex.height);// 无法显示 p.graphics.drawTexture(tex, 0, 0, 100, tex.height);// 正常显示 忘记说明了,native上显示有问题,网页是正常的 2018-10-25 添加评论 ...
来源: Laya_社区 发布时间: 20181025
...的位置,使它产生连续绕一个点旋转的效果 this.gameView.sp.graphics._one[2] = x; this.gameView.sp.graphics._one[3] = y; 我这样写能实现,但是感觉不是正确的方法! IDE中有看到toX和toY属性,但是代码中不知如何获取 2018-02-23 添加评论 免费帖 --...
来源: Laya_社区 发布时间: 20180223
...游戏开发基础,本篇从API到示例分别介绍Sprite.loadImage与Graphics.drawTexture两种显示图片的方法。 ## 1、用loadImage方法显示与切换图片 ### 1.1 loadImage API概述 在API文档中搜索laya.display.Sprite,可以找到loadImage()方法,如图1所示,我们先...
来源: Laya2.0_文档 发布时间: 20210715
webgl 绘制出错 webgl 模式下graphics.drawLines(0, 0, mc.dot, color, thickness);使用这个绘制方法,报错! canvas 模式正常! 附件 : --> Test1.rar 2017-04-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...
来源: Laya_社区 发布时间: 20170424
...ite(); this.sprite.on('mousedown', this, on_down); this.sprite.graphics.drawCircle(x, y, r2, color2, color2, 2); this.sprite.graphics.drawCircle(x, y, r1, color1, color1, 0); function on_down(event) { console.log("_____ kbRing2\n"); } } function laya_test()...
来源: Laya_社区 发布时间: 20161221