大约有 976 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)
Laya_社区(598) Laya2.0_文档(80) Laya3.0_api(67) Laya2.0_api(60) laya_api(56) Laya2.0_示例(41) Laya_示例(37) Laya3.0_文档(37)
... 提交 5 个回复 w1114367261 赞同来自: 创建的话如果不设置pos()位置的话默认为Stage的(0,0)点如果第一次创建设置了相应位置然后再移除后再次创建是不会存储你上次创建后设置的位置的,如果第二次创建没有重新设置位置的...
来源: Laya_社区 发布时间: 20180411
...oadImage(s); img.on(Laya.Event.CLICK, this, () => { img.y -= 10; }) img.pos(100, 300) Laya.stage.addChild(img) } function createFlower() { var f = new Laya.Sprite(); var r = Math.random(); var s = r > 0.66 ? "img/flower1.jpg" : r > 0.33 ? "img/flower2.png" : "img/flower3.jpg" f.loadImage(s)...
来源: Laya_社区 发布时间: 20180412
...Scale = 0; sp.addComponentIntance(body); sp.anchorX = sp.anchorY = 0.5; sp.pos(event.stageX, event.stageY); this.owner.parent.addChild(sp); }p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Hannotate SC'; -webkit-text-stroke: #000000} span.s1 {font-kerning: none}添加RigidBody组件后anchorX...
来源: Laya_社区 发布时间: 20200216
...is.complete) complete() { XXXXXXXX//重置父节点的方法 this.owner.pos(0, 0 );//重置坐标 } 2019-01-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 把demo传上来吧 2019...
来源: Laya_社区 发布时间: 20190103
... Laya.stage.addChild(prefab); prefab.pos(100,100); }),null,Laya.Loader.PREFAB); 如上,obj.create打包后在真机找不到此函数。 附件 : --> 2D.zip 2020-04-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20200409
... new Sprite(); testPan.name = "testPan"; this.addChild( testPan ); testPan.pos( 300,300); testPan.graphics.drawRect(0,0,90,100,"#faaff0"); testPan.on(Event.CLICK,this,onMouseClick); testPan.width = 90; testPan.height = 100; var mcSp:Sprite = new Sprite(); mcSp.graphics.drawRect(0,0,90,100,"#fff000")...
来源: Laya_社区 发布时间: 20161124
... if ((i+1)%2 == 0) { but.pos(83, 370 + (i + 1) / 2 * but.height + (i + 1) / 2 * 8); }else { but.pos(245,370 + (i + 1) / 2 * but.height + (i + 1) / 2 * 8); } ...
来源: Laya_社区 发布时间: 20170320
...hape); //加上这句正常,反之则异常 //_shape.cacheAsBitmap=true; pos(300,300); Tween.to(this,{rotation:360},3000); } override public function get width():Number{ return _shape.width; } override public function get height():Number{ return _shape.height; } } } BUG2:package ui.test { import l...
来源: Laya_社区 发布时间: 20170124
... 0, 720, 5120); //更改背景2的位置,放在背景1的上边 this.bg1.pos(0, -3840); this.bg2.pos(0, -8960); //把背景图显示在容器内 this.addChild(this.bg2); //创建一个帧循环,更新容器的位置 Laya.timer.frameLoop(1, this, this.onLoop); 补充:在游戏开始游戏中loa...
来源: Laya_社区 发布时间: 20181105
...(); text.fontSize = 30; text.color = "#ff0000"; text.text = "你好"; text.pos(100, 100); Laya.stage.addChild(text); text = new Text(); text.fontSize = 30; text.color = "#ff0000"; text.text = "你好"; text.font = "remember"; text.pos(100, 200); Laya.stage.addChild(text); } } } 或者在con...
来源: Laya_社区 发布时间: 20191211