大约有 28 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...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
...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
...: 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
...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
...个简单的脚本 应该能让切图轻松一些把 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
...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
... 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
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
...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
...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