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

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

161. 发现一个问题Laya.Animation()创建后移除,再创建,位置会变 [ 69%]

... 提交 5 个回复 w1114367261 赞同来自: 创建的话如果不设置pos()位置的话默认为Stage的(00)点如果第一次创建设置了相应位置然后再移除后再次创建是不会存储你上次创建后设置的位置的,如果第二次创建没有重新设置位置的...

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

162. 加上size设置后,精灵不能点击. [ 69%]

...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

163. BUG:添加RigidBody组件会使anchorX、anchorY失效 [ 69%]

...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

164. 2.0中Tween为什么是先执行了complete回调函数,然后在执行tween函数本身。 [ 69%]

...is.complete)   complete() { XXXXXXXX//重置父节点的方法 this.owner.pos(0, 0 );//重置坐标   } 2019-01-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 把demo传上来吧 2019...

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

165. layabox打包apk后加载prefab之后使用pool创建prefab找不到create函数 [ 69%]

...       Laya.stage.addChild(prefab);             prefab.pos(100,100);         }),null,Laya.Loader.PREFAB); 如上,obj.create打包后在真机找不到此函数。 附件 : --> 2D.zip 2020-04-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...

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

166. 鼠标事件能否在有图形的区域感应,特别是子项坐标为负数时(已经找到问题) [ 68%]

... 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

167. 按钮加载皮肤丢失 [ 68%]

...         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

168. 绘制图形的BUG [ 68%]

...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

169. 微信小游戏图片加载不出来 [ 68%]

... 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

170. layanative安卓端需要怎么添加ttf字体,需要增加两种字体? [ 68%]

...(); 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