大约有 272 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0036 秒)
...,动画会明显变模糊,如: this.animation.pivot(this.animation.getBounds().width / 2,this.animation.getBounds().height / 2); 如果this.animation.getBounds().width / 2为非整数,动画就会变模糊,像下面带有小数点就会模糊 this.animation.pivot(100.5,100.5); 发现带...
来源: Laya_社区 发布时间: 20170207
...-------------------- 原问题:通过文档和一些实践,我知道了getBounds和getGraphicBounds是性能比较耗的两个方法。为了搞清楚底层,我查看了其源码。但水平和时间有限,不太能看懂。 只知道getBounds考虑style,transform等, 还可能递归算所...
来源: Laya_社区 发布时间: 20170828
...内容相关的链接 提交 2 个回复 qq_别天神 赞同来自: 使用getBounds ()来获取宽高,这个有点耗性能 2016-11-17 0 1 分享 微博 QZONE 微信 cuixueying 赞同来自: 是的,为了节省性能的消耗,我们的显示对像本身是没有宽高的,只能通过ge...
来源: Laya_社区 发布时间: 20161117
...载完图集后的Animation怎么获得400x500的宽高 另外Animation的getBounds()返回的数据浏览器和手机里是不一样的,咋回事? 手机: 网页: 代码: ani.loadAtlas("res/atlas/hero_"+_model+".atlas",Handler.create(this,onLoad)); function onLoad():void { this.addChild(a...
来源: Laya_社区 发布时间: 20180307
...dth/2,image.height/2,image的宽高需要自己手动设置或者通过getBounds获取。 2016-11-18 0 0 分享 微博 QZONE 微信 shaouXie 赞同来自: var bg = new Laya.Sprite(); bg.loadImage("res/bg-480x720.jpg"); Laya.stage.on(Laya.Event.RESIZE,this,onResize); function onResize() { ...
来源: Laya_社区 发布时间: 20161118
...); Laya.stage.addChild(sprite); console.log(sprite.getBounds()); console.log(sprite.width,sprite.height)); } 附件 : --> ZG.zip 2016-11-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...
来源: Laya_社区 发布时间: 20161108
...e.addChild(bt) //获取动画大小区域 var bgBound: Laya.Rectangle = bg.getBounds(); var btBound: Laya.Rectangle = bg.getBounds(); console.log(bgBound.width/2) console.log(bgBound.height - 150) bt.pos(bgBound.width/2 - btBound.width/2,bgBound.height - 150) } } //启动游戏 new Game();打印结...
来源: Laya_社区 发布时间: 20160804
...-点击区域HitArea设置问题 问题: 通过 rectangle = skeleton.getBounds() 获取动画所在的矩阵,然后设置skeleton的 hitArea为(-width, -height, width, height). 但是只有点击动画的右下角才能拖拽。期望: 龙骨动画的任意位置都可以拖拽。 ...
来源: Laya_社区 发布时间: 20171114
...添加多个子节点。 注意: Sprite 默认没有宽高,可以通过getBounds函数获取;也可手动设置宽高;还可以设置autoSize=true,然后再获取宽高。Sprite的宽高一般用于进行碰撞检测和排版,并不影响显示图像大小,如果需要更改显示图...
来源: laya_api 发布时间: 20170929
...在循环里创建对象及复杂计算。 ### 4、尽量少用autoSize与getBounds `autoSize()`与`getBounds()`需要大量计算,对性能的影响较大,尽量少用。 ### 5、被try catch的函数执行会变得非常慢 项目中尽量减少`try catch`的使用,被`try catch`的函数执...
来源: Laya2.0_文档 发布时间: 20210715