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

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

1. list功能改变图片皮肤 [ 100%]

...var q:Number=0;q<130;q++){ var first:Object= new Object(); //first.lbl =Math.floor(Math.random()*3+1) ; if(q == 1) { var cc:*=_tempFruitUi.panel; var dd:List=aa.getChildByName("firstList") as List; var itemB:Box = dd.getCell(0); var specificPic:Image = itemB.getChildByName("img1") as Image; speci...

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

2. clip里设置缓存的key有漏洞 [ 95%]

...e):void { if (url === _skin && img) { var w:Number = _clipWidth || Math.ceil(img.sourceWidth / _clipX); var h:Number = _clipHeight || Math.ceil(img.sourceHeight / _clipY); var key:String = _skin + w + h; key这样得到真的ok吗? aaa2 + 2 + 22  aaa + 22 + 22  这样可是同一...

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

3. 为什么这个图片还是随机切换不了,新手求帮忙 [ 95%]

...: Todo 你好   以下代码是用Image的skin来替换资源var index= Math.floor(Math.random()*num); var img= new Laya.Image(); Laya.stage.addChild(img); img.skin = "res/"+index+".png"; 2017-01-11 1 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 ...

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

4. 使用blendMode=add模式时,某些手机上无法正常显示,出现黑底 [ 93%]

...mage();             image.skin = "res/atlas/clanwar_bg.jpg?" + Math.random();             Laya.stage.addChild(image);              var index:int = 0;             Laya.stage.timerLoop(1, this, function():void{index++;image.alpha = Math.sin(Math.PI*2*(i...

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

5. 关于Button Skin 切图问题 [ 92%]

...个简单的脚本 应该能让切图轻松一些把   mport os import math from PIL import Image  # if png pngs=[] maxWith = 0 maxHeight = 0 for idx in range(1,4): fname = os.path.join( os.path.curdir, "btn_{0}.png".format(idx)) if os.path.exists( fname) : im=Image.open( fname) pngs.append( im) ...

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

6. 在开启webgl模式下,每次运行texture类的getPixels方法内存都会增加 [ 89%]

...e: Laya.Texture init(){ let rect = this.img.getSelfBounds() this.img.pivot(Math.round(rect.width / 2), Math.round(rect.height / 2)) let bound = this.img.getBounds() this.cacheCanvas = this.img.drawToCanvas(Math.ceil(bound.width), Math.ceil(bound.height), Math.round(bound.width / 2), Math.round(bound...

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

7. 扇形遮罩画不全画了一个很奇怪的形状但是矩形的就没问题。显示效果如下:版本号1.7.10 [ 87%]

...               processTimer = ProcessTimer.create(img,new laya.maths.Size(70,70));                 processTimer.setPercentage(100);                 processTimer.setType(ProcessTimer.PROGRESS_TIMER_TYPE_RECT);                 processTimer.setPosition(0,0...

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

8. list随机生成图片优化 [ 85%]

list随机生成图片优化 var aa:int= Math.floor((Math.random()*4)+1); var bb:int; switch(aa) { case 1: bb=2; break; case 2: bb=4; break; case 3: bb=1; break; case 4: bb=3; break; } var img:Image = cell.getChildByName("img1") as Image; img.skin ="battle/xuanshangyu/Image_"+aa+"00"+bb+".png"; 一...

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

9. List翻页效果 [ 81%]

...age = this.list_rule.scrollBar.max / this.list_rule.totalPage; let index = Math.floor(value / page) if (index > 5) index = 5; this.setCurPage(index) } public onMouse(e: Laya.Event, index: number): void { if (e.type == Laya.Event.MOUSE_DOWN) { this.m_downValue = this.list_rule.scrollBar.value; } e...

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

10. List翻页效果怎么实现 [ 81%]

...age = this.list_rule.scrollBar.max / this.list_rule.totalPage; let index = Math.floor(value / page) if (index > 5) index = 5; this.setCurPage(index) } public onMouse(e: Laya.Event, index: number): void { if (e.type == Laya.Event.MOUSE_DOWN) { this.m_downValue = this.list_rule.scrollBar.value; } e...

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