大约有 50 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0029 秒)
Laya_社区(37) Laya3.0_api(3) Laya2.0_文档(3) laya_api(2) Laya2.0_api(2) Laya3.0_文档(1) Laya2.0_示例(1) Laya_示例(1)
...| Methods Packagelaya.uiClasspublic class AutoBitmapInheritanceAutoBitmap Graphics Object AutoBitmap 类是用于表示位图图像或绘制图形的显示对象。 封装了位置,宽高及九宫格的处理,供UI组件使用。 Public Properties Hide Inherited Public Properties Show Inherited...
来源: laya_api 发布时间: 20170929
...环形效果是可以的。 环形图作为mask使用,环本身是通过graphics的drawPie画出来的,这样效果就没有图片画的环好了,至少颜色只能是实色。 最完美的环形进度条还是需要用shader实现,谁能教我laya2.0怎么给UI设置shader啊 2019-05-16 0 1...
来源: Laya_社区 发布时间: 20190403
...9, 118) mask.pos(38.5, 59); mask.name = "mask"; mask.pivotToCenter(); mask.graphics.drawRect(-38.5, -59, 79, 118, '#000000'); var maskContainer = new Sprite(); maskContainer.size(79, 118); maskContainer.pos(38.5, 59); maskContainer.pivotToCenter(); maskContainer.mask = mask; maskContainer.name = 'co...
来源: Laya_社区 发布时间: 20170316
...| Methods Packagelaya.uiClasspublic class AutoBitmapInheritanceAutoBitmap Graphics Object AutoBitmap 类是用于表示位图图像或绘制图形的显示对象。 封装了位置,宽高及九宫格的处理,供UI组件使用。 Public Properties Hide Inherited Public Properties Show Inherited...
来源: Laya2.0_api 发布时间: 20190513
...度 如何 转换成 Y轴旋转 的四元数? 怎么检测点是否在 graphics所绘制的区域内 DrawPie例子中无法显示遮罩区域 问题状态 最新活动: 2017-11-14 14:59 浏览: 1743 关注: 2 人
来源: Laya_社区 发布时间: 20171114
...og('===this.currentPower: ', this.currentPower); this.NodePowerProgressBar.graphics.clear(); //参数是否为true,都一样 this.NodePowerProgressBar.graphics.drawPie(100, 100, 100, 0, this.currentPower, ''); } 必现条件: 1,第一次进度条绘制到360度是正常的,从第二次开始...
来源: Laya_社区 发布时间: 20190909
...浏览器 let pie = new Laya.Sprite();//扇形 gRoomView.endAngle++; pie.graphics.drawPie(38,37,30,270,gRoomView.endAngle,"#32535b"); 附件 : --> 2017-09-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueyi...
来源: Laya_社区 发布时间: 20170914
... = rect; pos = bian * 0.5; } public function set360(value:int):void { this.graphics.clear(); if(value == -1){ return; } this.graphics.drawPie(pos,pos,r,START+(360 - value), 270 , COLOR ,null,0); } private function ef():void { if( TheGame.GetServerTime() > endTime ){ this.stop(); return; } var now...
来源: Laya_社区 发布时间: 20171124
...百分比 */ private onLoading(percent: number): void { this.view.box_mark.graphics.drawPie(216, 216, 216, -90, (-90 + Math.floor(percent * 360)), "#ff0000"); //画进度 let point: { x: number, y: number, hudu: number } = this.cal(216, 216, 205, Math.abs(Math.floor(percent * 360) ) - 90); //现在...
来源: Laya_社区 发布时间: 20190629
... if (maskSp) { maskSp.graphics.clear(); var w:Number = maskSp.getSize().width; var h:Number = maskSp.getSize().height; ...
来源: Laya_社区 发布时间: 20180404