大约有 185 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...) { var content=this._content; var rect = new Laya.Sprite(); rect.graphics.drawRect(0, 0, this.contentWidth, this.contentHeight, "#000000"); content.hitArea = new Laya.HitArea(); content.hitArea.hit = rect.graphics; } 然后分别在panel的“setContentSize”和“changeScroll”方法的最后一...
来源: Laya_社区 发布时间: 20170610
...变矩形? 请问LayaAir如何绘制一个渐变矩形? this.graphics.drawRect(0, 0, 500, 350, "#ffffff") drawRect(x:Number, y:Number, width:Number, height:Number, fillColor:*, lineColor:* = null, lineWidth:Number = 1):void 参数fillColor:* — 填充颜色,或者填充绘图的渐变对象 ...
来源: Laya_社区 发布时间: 20170420
...r sp1:Sprite=new Sprite(); sp1.autoSize=true; sp1.name='sp1'; sp1.graphics.drawRect(0,0,100,100,"#FF0000"); var sp2:Sprite=new Sprite(); sp2.autoSize=true; sp2.name='sp2'; sp2.graphics.drawRect(0,0,100,100,"#0000FF"); sp2.x=110; Laya.stage.addChild(sp1); Laya.stage.addChild(sp2); onAddEvent(sp1); on...
来源: Laya_社区 发布时间: 20170502
...eSnapEffect.graphics.beginFill( 0xFFFFFF ); this._shapeSnapEffect.graphics.drawRect( 0, 0, L.W_CLIP, L.H_CLIP ); this._shapeSnapEffect.graphics.endFill(); this._shapeSnapEffect.cacheAsBitmap = true; this._shapeSnapEffect.x = this._bmpSnap.x; this._shapeSnapEffect.y = this._bmpSnap.y; http://develope...
来源: Laya_社区 发布时间: 20170618
...367261我测试过了 只要调用fillText绘制就增加接近16M,使用drawRect等几乎不增加,这是什么原因? w1114367261 • 2018-04-25 14:29 这个是laya的大图集功能没有办法去掉哦!你第一次绘制fillText会创建出laya的大图集所以增大, AllenYT • 2018...
来源: Laya_社区 发布时间: 20180425
...reateBtn(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按钮,进行截屏 private fun...
来源: Laya_社区 发布时间: 20170822
...or() { super(); this.pivot(this.width / 2, this.height / 2); this.graphics.drawRect(0, 0, this._size, this._size, this._color); } } //a文件 import player from './player'; // 程序入口 class GameMain { constructor() { Laya.init(640, 960); var stage = Laya.stage; let p1 = new player(); } } new...
来源: Laya_社区 发布时间: 20180804
...区 var tempgraphics:Laya.Graphics= new Laya.Graphics(); tempgraphics.drawRect(0,0,50,50,"FFFFFF"; this.rootSceneView.avatorBtn.hitArea = tempgraphics 首先绘制的时候必须带上颜色 才能绘制 然后会崩溃 附件 : --> 2018-03-22 添加评论 免费帖 --> 分享 微博 QZON...
来源: Laya_社区 发布时间: 20180322
...页面所在的位置,在此设置设置一个背景色 bgPage.graphics.drawRect(0, 0, 300, 300, "#ffcccc"); //添加到stage Laya.stage.addChild(bgPage); //实例化MonkeyPageUI页面 var monkeyPage: ui.MonkeyPageUI = new ui.MonkeyPageUI(); //为了能够清楚的看到这个页面所在的位置...
来源: Laya2.0_文档 发布时间: 20210715
...r(); this.init(); } init() { this.bg = new Laya.Sprite(); this.bg.graphics.drawRect(0, 0, 200, 200, '#ccc'); this.addChild(this.bg); this.htmlTxt = new Laya.HTMLDivElement(); this.htmlTxt.style.fontSize = 20; this.htmlTxt.style.width = 200; this.htmlTxt.style.borderColor = '#000'; this.htmlTxt.style...
来源: Laya_社区 发布时间: 20210107