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

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

131. 怎么对graphics画出来的图片进行鼠标点击拖动??? [ 64%]

...dthLimit, dragHeightLimit); //画出拖动限制区域 Laya.stage.graphics.drawRect( this.dragRegion.x, this.dragRegion.y, this.dragRegion.width, this.dragRegion.height, null, "#FFFFFF", 2); } private onStartDrag(e: Event): void { //鼠标按下开始拖拽(设置了拖动区域和超界弹回的滑...

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

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

...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.frameLoop(60...

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

133. laya.display.Graphics [ 64%]

...* = null, lineWidth:Number = 1):DrawPolyCmd 绘制多边形。 Graphics  drawRect(x:Number, y:Number, width:Number, height:Number, fillColor:*, lineColor:* = null, lineWidth:Number = 1):DrawRectCmd 绘制矩形。 Graphics  drawTexture(texture:Texture, x:Number = 0, y:Number = 0, width:Number = ...

来源: Laya2.0_api 发布时间: 20190513

134. 扇形遮罩问题。 [ 63%]

...prite = new Sprite(); Laya.stage.addChild(sp); sp.alpha = 0.8; sp.graphics.drawRect(50,50,50,50,"#ff0000"); var sp1:Sprite = new Sprite(); sp1.alpha = 0.5; //Laya.stage.addChild(sp1); //画扇形 当这个扇形画的角度是 0-360度时 舞台上红色矩形不见了 sp1.graphics.drawPie(75,75,40,...

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

135. 设置pivot后,精灵位置显示位置不正确 [ 63%]

...ght / 2)) this.sp.graphics.drawCircle(0, 0, 5, "#000000") this.sp.graphics.drawRect(-this.sp.pivotX, -this.sp.pivotY, width, height, undefined, "#00ff00", 1) this.sp.pos(500, 500) Laya.stage.addChild(this.sp); } } new GameMain();这是运行截图,发现中心点的位置并不是(500, 500)   附...

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

136. 安卓机截图变成黑块,ios和pc没问题 [ 63%]

...private function test():void { var sp1:Sprite = new Sprite(); sp1.graphics.drawRect(0,0,300,200,"#ff0000"); var htmlCanvas:HTMLCanvas = sp1.drawToCanvas(300,200,0,0); Laya.timer.once(1000,this,function():void{ var texture:Texture = new Texture(htmlCanvas); var sp2:Sprite = new Sprite(); sp2.graphics...

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

137. laya.ui.AutoBitmap [ 63%]

...ineColor:* = null, lineWidth:Number = 1):void 绘制多边形。 Graphics drawRect(x:Number, y:Number, width:Number, height:Number, fillColor:*, lineColor:* = null, lineWidth:Number = 1):void 绘制矩形。 Graphics drawTexture(tex:Texture, x:Number = 0, y:Number = 0, width:Number = 0, height:Num...

来源: laya_api 发布时间: 20170929

138. 问个关于die的问题 [ 63%]

...来自: 用TimeLine的方式即可 var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); Laya.stage.addChild(sp); var timeLine:TimeLine=new TimeLine(); timeLine.to(sp,{x:50,y:50},1000).to(sp,{x:30,y:30},1000); timeLine.play(); 2017-06-15 0 2 分享 微博 QZONE 微信 为什么被...

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

139. laya.ui.AutoBitmap [ 63%]

...r:* = null, lineWidth:Number = 1):DrawPolyCmd 绘制多边形。 Graphics drawRect(x:Number, y:Number, width:Number, height:Number, fillColor:*, lineColor:* = null, lineWidth:Number = 1):DrawRectCmd 绘制矩形。 Graphics drawTexture(texture:Texture, x:Number = 0, y:Number = 0, width:Number = 0,...

来源: Laya2.0_api 发布时间: 20190513

140. 不规则热区的实现 [ 63%]

...e { function test():void { var t:Texture = datas; m_hitAreaSprite.graphics.drawRect(t.offsetX,t.offsetY,t.width, t.height,'#FFFFFF'); m_hitAreaSprite.width = t.width; m_hitAreaSprite.height = t.height; } } 理论上些类是可以有响应的,为何他没有反应,是那里写错了吗? 2016-1...

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