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

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

11. 同一个Graphics里面绘制超过20000个矢量rect的情况下,Uncaught Error: IBQuadrangle count(带悬赏的每次都创建订单失败,之后在社区里面看不到) [ 94%]

同一个Graphics里面绘制超过20000个矢量rect的情况下,Uncaught Error: IBQuadrangle count(带悬赏的每次都创建订单失败,之后在社区里面看不到) 顶点数超过65535 / 4会抛出错误这个知道,有没有办法绕开这个报错 尝试过draw 10000个点的时候...

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

12. 屏幕适配-缩放-No Border [ 93%]

...alRect() { const Sprite = Laya.Sprite; this.rect = new Sprite(); this.rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(this.rect); this.updateRectPos(); } updateRectPos() { this.rect.x = Laya.stage.width / 2; this.rect.y = Laya.stage.height / 2; } } new SmartScale_Scale_NOBO...

来源: Laya2.0_示例 发布时间: 20241118

13. 屏幕适配-缩放-No Scale [ 93%]

...alRect() { const Sprite = Laya.Sprite; this.rect = new Sprite(); this.rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(this.rect); this.updateRectPos(); } updateRectPos() { this.rect.x = Laya.stage.width / 2; this.rect.y = Laya.stage.height / 2; } } new SmartScale_Scale_NOSC...

来源: Laya2.0_示例 发布时间: 20241118

14. 屏幕适配-缩放-Extract Fit [ 93%]

...alRect() { const Sprite = Laya.Sprite; this.rect = new Sprite(); this.rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(this.rect); this.updateRectPos(); } updateRectPos() { this.rect.x = Laya.stage.width / 2; this.rect.y = Laya.stage.height / 2; } } new SmartScale_Scale_EXTR...

来源: Laya2.0_示例 发布时间: 20241118

15. 屏幕适配-缩放-Show All [ 93%]

...alRect() { const Sprite = Laya.Sprite; this.rect = new Sprite(); this.rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(this.rect); this.updateRectPos(); } updateRectPos() { this.rect.x = Laya.stage.width / 2; this.rect.y = Laya.stage.height / 2; } } new SmartScale_Scale_SHOW...

来源: Laya2.0_示例 发布时间: 20241118

16. 关于适配有点疑惑 [ 91%]

...tralRect(); })(); function createCantralRect() { rect = new Sprite(); rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(rect); var rect1 = new Sprite(); rect1.graphics.drawRect(Laya.stage.width / 3 * 2 , Laya.stage.height / 3 * 2 - 65, 100, 100, "blue"); // rect1.graphics.dra...

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

17. 在LayaAir IDE用组件Rect绘制矩形,在代码中怎么获取这个对象啊 [ 87%]

...: 2 人 cuixueying • 2017-07-04 10:48 这个也不多,就好比sprite.graphics绘制了一个矢量图形一样,graphics没有继承,只是用来绘制矢量的!

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

18. 鼠标交互-鼠标交互 [ 84%]

...er(); } function createInteractiveTarget() { var rect = new Sprite(); rect.graphics.drawRect(0, 0, 200, 200, "#D2691E"); rect.size(200, 200); rect.x = (Laya.stage.width - 200) / 2; rect.y = (Laya.stage.height - 200) / 2; Laya.stage.addChild(rect); //增加鼠标事件 rect.on(Event.MOUSE_DOWN, this,...

来源: Laya_示例 发布时间: 20241118

19. 鼠标交互-鼠标交互 [ 84%]

...st Event = Laya.Event, Sprite = Laya.Sprite; let rect = new Sprite(); rect.graphics.drawRect(0, 0, 200, 200, "#D2691E"); rect.size(200, 200); rect.x = (Laya.stage.width - 200) / 2; rect.y = (Laya.stage.height - 200) / 2; Laya.stage.addChild(rect); //增加鼠标事件 rect.on(Event.MOUSE_DOWN, this,...

来源: Laya2.0_示例 发布时间: 20241118

20. graphics怎么画透明色 [ 81%]

graphics怎么画透明色 graphics怎么画透明色 2018-12-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 aicode 赞同来自: let graphics=new Laya.Graphics(); graphics.clear(); graphics.save(); graphics.a...

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