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

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

1. 其他引擎的Demo-Example_23 [ 100%]

...(tick > frequency) { tick = 0; // iterate through the dudes and update the positions var laser = new Sprite(); laser.loadImage("../../res/pixi/laser0" + ((type % 5) + 1) + ".png"); type++; laser.life = 0; var pos1; var pos2; if (type % 2) { pos1 = new Point(-20, Math.random() * viewHeight); pos2 = n...

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

2. 其他引擎的Demo-Example_23 [ 99%]

...(tick > frequency) { tick = 0; // iterate through the dudes and update the positions laser = new Sprite(); laser.loadImage("res/pixi/laser0" + ((type % 5) + 1) + ".png"); type++; laser.life = 0; let pos1; let pos2; if (type % 2) { pos1 = new Point(-20, Math.random() * viewHeight); pos2 = new Point(v...

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

3. 高级应用-闪光 [ 98%]

... glitterTemplet.maxSlerpCount = 128; glitterTemplet.maxSegments = 600; var pos1 = new Laya.Vector3(0, 0, -0.5); var pos2 = new Laya.Vector3(0, 0, 0.5); var scaleDelta = 0; var scaleValue = 0; Laya.timer.frameLoop(1, this, loop); function loop() { scaleValue = Math.sin(scaleDelta += 0.01); pos1.eleme...

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

4. 十几秒以后动画渲染时间变长,帧率变慢,是怎么回事? [ 97%]

...2; /* 以下用于计算移动位置 */ /** 下一步位置 */ private _to_pos:Point = <Point>{ x: -1, y: -1 }; /** 步数 */ private _step: number;  /** 路径起点 */ private _head_pos: Point = <Point>{ x: -1, y: -1 }; /** 路径终点 */ private _tail_pos: Point = <Point>{ x: ...

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

5. webGL模式下 graphic画线涂鸦,一直不停画会出现线条异常 [ 97%]

...的问题 2017-11-22 0 0 分享 微博 QZONE 微信 dnvqqk 赞同来自: pos0:Laya.Point=new Laya.Point(); pos1:Laya.Point=new Laya.Point(); __mouseDown(e:Event){ this.pos0.x=this.bmp.mouseX; this.pos0.y=this.bmp.mouseY; this.pos1.x=this.bmp.mouseX this.pos1.y=this.bmp.mouseY; this.bmp.on(Laya.Event...

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

6. 文本-字符限制 [ 96%]

...(); })(); function createTexts() { createLabel("只允许输入数字:").pos(50, 20); var input = createInput(); input.pos(50, 50); input.restrict = "0-9"; createLabel("只允许输入字母:").pos(50, 100); input = createInput(); input.pos(50, 130); input.restrict = "a-zA-Z"; createLabel("只...

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

7. 文本-字符限制 [ 96%]

...ateTexts(); } createTexts() { this.createLabel("只允许输入数字:").pos(50, 20); let input = this.createInput(); input.pos(50, 50); input.restrict = "0-9"; this.createLabel("只允许输入字母:").pos(50, 100); input = this.createInput(); input.pos(50, 130); input.restrict = "a-zA-Z"; thi...

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

8. pos会影响精灵缩放效果的问题 [ 95%]

pos会影响精灵缩放效果的问题 我想对精灵进行放大,代码很简单,如下 let img2: Laya.Sprite = new Laya.Sprite(); img2.graphics.drawTexture(texture, 0, 0, 200, 200); img2.graphics.drawCircle(100, 100, 20, "#ffff00"); img2.scale(2, 2); img2.pos(0, 0); img2.pivot(0, 0);效果...

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

9. Text类中竟然没有pos函数的api~ [ 94%]

Text类中竟然没有pos函数的api~ 作为一个萌新,对于看不懂的方法就想去查看一下api文档 结果竟然没有。 我尝试了一下 这个pos 好像是设置与屏幕左上角的margin距离,不晓得我理解的对不对! 2018-04-11 添加评论 免费帖 --> 分享 微...

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

10. 官方的API为什么找不到pivot和pos[ 94%]

官方的API为什么找不到pivot和pos? var bounds = ani.getGraphicBounds(); ani.pivot(bounds.width / 2, bounds.height / 2); ani.pos(Laya.stage.width / 2, Laya.stage.height / 2); Laya.stage.addChild(ani);   上面pivot和pos都是什么意思?官方API为什么找到说明? 2018-05-09 添...

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