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

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

21. 关于大量绘制 draw的性能优化问题 [ 82%]

...MOVE, this, mousemove); function  mousemove(e) {     drawLayer.graphics.drawCircle(e.target.mouseX,e.target.mouseY,20,"#ffffff")     drawLayer.cacheAsBitmap; }   我的思路是每一次move都把对应的圆形区域绘制到一个容器上,这样一来drawcall就不会一直增加了。  ...

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

22. 新手引导在ios浏览器表现异常 [ 81%]

...rea = this.guideHitArea;             this.guideHitArea.unHit.drawCircle(posX, posY, radius, "#000000");             interactionArea.graphics.drawCircle(posX, posY, radius, "#000000");             let maskButton = new Laya.Button();           ...

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

23. 关于环形进度条,进度不能重置问题 [ 81%]

...0,this.angle, "#ffffff"); this.circle = new Sprite(); this.circle.graphics.drawCircle(this.say.width/2, this.say.height/2, this.say.width/2, "#00ffff"); this.circle.blendMode = "destination-out"; } Laya.class(IndexView,"IndexView",_super); IndexView.prototype.loadProgress = function(){ this.box.addC...

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

24. 这种进度条怎么实现? [ 79%]

...gt;> 1) this.$circleSprite.graphics.clear() this.$circleSprite.graphics.drawCircle((this.DEF_SIZE - this.CIRCLE_WIDTH) >> 1, (this.DEF_SIZE - this.CIRCLE_WIDTH) >> 1, (this.DEF_SIZE - 20) >> 1, "#fff") this.addChild(this.$circleSprite) this.start() } public start() { this.timerL...

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

25. 圆环不跟随 sprite 一起缩放? [ 79%]

...tSp.graphics.drawLine(0, 0, 100, 100, "#ffffff", 5); this.firstSp.graphics.drawCircle(100, 100, 20, null, "ffffff"); Laya.stage.on(Laya.Event.MOUSE_WHEEL, this, this.MouseWheel);  this._rootSp.hitArea = new Laya.Rectangle(0, 0, 10000, 10000) this._rootSp.addChild(this.firstSp); Laya.stage.addChild(...

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

26. laya微信打包问题很多呀,就是加了一些绘图api,就报错 [ 79%]

...400, 166, [0, 100, 50, 0, 100, 100], "#ffff00"); //画圆 this.sp.graphics.drawCircle(98, 332, 50, "#00ffff"); //画扇形 this.sp.graphics.drawPie(240, 290, 100, 10, 60, "#00ffff"); //绘制圆角矩形,自定义路径 this.sp.graphics.drawPath(400, 310, [["moveTo", 5, 0], ["lineTo", 105, 0], ["a...

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

27. 圆不跟谁 sprite 一起缩放? [ 78%]

...tSp.graphics.drawLine(0, 0, 100, 100, "#ffffff", 5); this.firstSp.graphics.drawCircle(100, 100, 20, null, "ffffff"); Laya.stage.on(Laya.Event.MOUSE_WHEEL, this, this.MouseWheel);  this._rootSp.hitArea = new Laya.Rectangle(0, 0, 10000, 10000) this._rootSp.addChild(this.firstSp); Laya.stage.addChild(...

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

28. 关于removeChildren、 destroy和destroyChildren的疑惑 [ 77%]

...adSprite() { SightBead.super(this); this.name = 'sightBead'; this.graphics.drawCircle(0,0,40,null,'#ff0000',1); this.graphics.drawLine(-45,0,45,0,'#ff0000',1); this.graphics.drawLine(0,45,0,-45,'#ff0000',1); this.alpha = 0; Laya.stage.addChild(this); // this.pos(440,640); } Laya.class(sightBeadSprit...

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

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

...pe.y = Laya.stage.height / 2; //这里是我加的代码 this.ape.graphics.drawCircle(50, 50, 30, "#ff0000"); this.ape.on(Event.MOUSE_DOWN, this, this.onStartDrag); } private showDragRegion(): void { //拖动限制区域 var dragWidthLimit: number = 350; var dragHeightLimit: number = 200; this.dragR...

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

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

...s.sp.pivot(Math.round(width / 2), Math.round(height / 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();这是运行截图,...

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