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

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

51. 绘制矩形与圆角矩形(JavaScript-LayaAir基础篇(JS)-矢量图) [ 86%]

...数示例**: ```java ["moveTo", 50, 50], ["lineTo", 150, 50], ["arcTo", 200, 50, 200, 100, 50], ``` 上述参数运行效果图如5-1所示: ![图5-1](img/5-1.png) (图5-1) 通过图5-1我们可以看出,`["moveTo", 50, 50]`将画笔的起始点定位于`"50,50"`这个位置。`["lineTo", ...

来源: Laya2.0_文档 发布时间: 20210715

52. 请问用SPINE做骨骼动画,在一个动画文件里,LAYA最多支持多少个骨骼呀? [ 86%]

...同来自: 理论上骨骼数不要超过255 但是建议最好不要超过200 2017-12-29 0 0 分享 微博 QZONE 微信 rongershaoye 赞同来自: 非常感谢。 再请问一下,是一个SPINE文件的骨骼不要超过200,还是在一个屏幕里所有动画的骨骼不要超过200? 2017-12...

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

53. 绘制矩形与圆角矩形(ActionScript-LayaAir基础篇(AS3)-矢量图) [ 85%]

...数示例**: ```java ["moveTo", 50, 50], ["lineTo", 150, 50], ["arcTo", 200, 50, 200, 100, 50], ``` 上述参数运行效果图如5-1所示: ![图5-1](img/5-1.png) (图5-1) 通过图5-1我们可以看出,`["moveTo", 50, 50]`将画笔的起始点定位于`"50,50"`这个位置。`["lineTo", ...

来源: Laya2.0_文档 发布时间: 20210715

54. 我自己绘制的矩形如何以自身中心点旋转不能实现啊 [ 85%]

...ge.bgColor="#eeffcc"; var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,300,"#000fff"); Laya.stage.addChild(sp); sp.size(200,300); sp.pivot(sp.width/2,sp.height/2); sp.pos(200,200); Laya.timer.frameLoop(1,this,onLoopRotation,[sp]); } private function onLoopRotation(sp:Sprite):void { sp.rotati...

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

55. 绘制矩形与圆角矩形(TypeScript-LayaAir基础篇(TS)-矢量图) [ 85%]

...数示例**: ```java ["moveTo", 50, 50], ["lineTo", 150, 50], ["arcTo", 200, 50, 200, 100, 50], ``` 上述参数运行效果图如5-1所示: ![图5-1](img/5-1.png) (图5-1) 通过图5-1我们可以看出,`["moveTo", 50, 50]`将画笔的起始点定位于`"50,50"`这个位置。`["lineTo", ...

来源: Laya2.0_文档 发布时间: 20210715

56. 鼠标点击穿透问题 [ 85%]

... Sprite(); sp1.graphics.beginFill(0xFF00FF); sp1.graphics.drawRect(100,100,200,200); sp1.graphics.endFill(); addChild(sp1); sp1.addEventListener(MouseEvent.CLICK,onSp1); var sp2:Sprite=new Sprite(); sp2.graphics.beginFill(0xFFFF00); sp2.graphics.drawCircle(200,200,100); sp2.graphics.endFill(); addCh...

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

57. 请问特效播放的速率可以自定义吗? [ 84%]

... onParticleLoaded(settings:ParticleSetting):void { settings.minStartSize = 200; settings.minEndSize = 200; settings.maxStartSize = 200; settings.maxEndSize = 200; par = new Particle2D(settings); //par.emitter.start(); par.x = -50; par.y = 1280; par.autoPlay = false; MonsterHunt2.battleUILayer.addChi...

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

58. 分享:Graphics下cmds命令流的使用! [ 84%]

...re(texture1,50,50,0,0,new Matrix(),0.5); box.graphics.drawTexture(texture2,200,50,0,0,new Matrix(),0.5); box.graphics.drawTexture(texture3,350,50,0,0,new Matrix(),0.5); box.graphics.drawTexture(texture4,500,50,0,0,new Matrix(),0.5); //获取cmds信息 trace(box.graphics.cmds); } } } 发布效果展...

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

59. 计时器-间隔循环 [ 84%]

...rotateTimeBasedText.x, this.rotateTimeBasedText.y + vGap); Laya.timer.loop(200, this, this.animateTimeBased); Laya.timer.frameLoop(2, this, this.animateFrameRateBased); } createText(text, x, y) { const Text = Laya.Text; let t = new Text(); t.text = text; t.fontSize = 30; t.color = "white"; t.bold = ...

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

60. 技术文档svg不可以使用 [ 84%]

...cccc";var data = "data:image/svg+xml," + '<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">' +'<foreignObject width="100%" height="100%">' +'<div xmlns="http://www.w3.org/1999/xhtml" style="font-size:40px">' +'<em>I</em> like ' +'<span style="color:wh...

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