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

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

191. Text->getCharPoint方法返回位置错误bug [ 69%]

...方法返回位置错误bug 1.当charIndex等于文本长度时,返回的pos.y永远是NaN 2.当文本水平对齐方式为right时,返回的pos.x比实际位置要向右偏移文本长度的距离 附件 : --> 2023-05-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...

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

192. LayaAir开发笔记(1)五十音图连连看 [ 69%]

... title.fontSize = 50; title.stroke = 2; title.strokeColor = "Black"; title.pos(g_stat_width / 2 - title.width / 2, 40); Laya.stage.addChild(title); // 设定版权信息 var copyright = new laya.display.Text(); copyright.text = "Copyright © 2016 程序员之乱"; copyright.font = "Arial"; copyright...

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

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

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

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

194. 加上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

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

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

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

198. 鼠标事件能否在有图形的区域感应,特别是子项坐标为负数时(已经找到问题) [ 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

199. 按钮加载皮肤丢失 [ 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

200. 超出文本区域的处理&滚动文本(JavaScript-LayaAir基础篇(JS)-文本) [ 68%]

...tion createTexts() { var t1 = createText(); t1.overflow = Text.VISIBLE; t1.pos(10, 10); var t2 = createText(); t2.overflow = Text.SCROLL; t2.pos(10, 110); var t3 = createText(); t3.overflow = Text.HIDDEN; t3.pos(10, 210); } function createText() { var txt = new Text(); txt.text = "Layabox是HTML5引...

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