大约有 610 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
Laya_社区(471) Laya2.0_文档(51) Laya3.0_api(50) Laya2.0_示例(16) Laya_示例(12) Laya3.0_文档(6) laya_api(2) Laya2.0_api(2)
... this.onTextureLoaded)); } onTextureLoaded() { maggotTexture = Laya.loader.getRes(texturePath); this.initMaggots(); Laya.timer.frameLoop(1, this, this.animate); } initMaggots() { let maggotContainer; for (let i = 0; i wb.x + wb.width) x -= wb.width; if (y wb.y + wb.height) y -= wb.height; maggot.pos...
来源: Laya2.0_示例 发布时间: 20241117
...xture 圆角图边缘有多出线条 var texture = LoadingManager.instance.getRes("res/progress.png"); var graphics=new Laya.Graphics(); graphics.fillTexture(texture,0,0,texture.width,texture.height,"repeat"); 如果用drawTexture就没问题,因为平铺需求 需要用到fillTexture,但周边...
来源: Laya_社区 发布时间: 20180904
...oaded), null, Loader.ATLAS); //var json:JSON = Loader.getRes("test.json"); //trace(json); } function onLoaded():void { var json:JSON = Loader.getRes("test.json"); tra...
来源: Laya_社区 发布时间: 20170413
...oid { for(var i:int=0;i<picAy.length;i++) { var texture:Texture= Loader.getRes(picAy); var ape:Sprite = new Sprite; //ape.x=i*(stageWidth/4) //Tween.to(ape, { x : i*(stageWidth/4) },1500,Ease.sineOut); var bl:Number=texture.width/texture.height ape.graphics.drawTexture(texture,0,0,stageWidth/4,st...
来源: Laya_社区 发布时间: 20161026
....addChild(title); title.graphics.drawTexture(Laya.loader.getRes("res/mainpage/title.png")); var titleT:Texture = Laya.loader.getRes("res/mainpage/title.png"); if(titleT==null){ trace("none"); ...
来源: Laya_社区 发布时间: 20171001
... texture2; // 更换纹理 ape.graphics.clear(); var texture = Laya.loader.getRes(textureUrl); ape.graphics.drawTexture(texture, 0, 0); // 设置交互区域 ape.size(texture.width, texture.height); } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Texture = Laya.Te...
来源: Laya_示例 发布时间: 20241117
...s/apes/monkey2.png", Handler.create(this, function() { var t = Laya.loader.getRes("../../res/apes/monkey2.png"); var ape = new Sprite(); ape.graphics.drawTexture(t, 0, 0); ape.graphics.scale(1.01, 1) Laya.stage.addChild(ape); ape.pos(200, 0); })); 上面这段代码并没有得到图片缩放的效...
来源: Laya_社区 发布时间: 20170609
...xx2.lh"]}], Laya.Handler.create(this, () => { let player1 = Laya.loader.getRes("xx/xxx1.lh").clone(); let player2 = Laya.loader.getRes("xx/xxx2.lh").clone(); })); [/size][/code]高级 为了根据具体项目来定制压缩包的颗粒度(打几个包,资源怎么分包),laya-zip提供了...
来源: Laya_社区 发布时间: 20211227
...re 平铺图片 图片不显示是什么原因 this.texture1 = Laya.loader.getRes('res/images/bg1.png'); this.texture2 = Laya.loader.getRes('res/images/bg2.png'); var repeatX = 8 ; var repeatCount = Math.ceil(stageW / repeatX); for(let i = 0; i < repeatCount ; i++) { this.bg1.graphics.drawTexture...
来源: Laya_社区 发布时间: 20180129
...oader.getAtlas(url); var res=arr ? laya.net.Loader.getRes(arr[0]):laya.net.Loader.getRes(url); if (res.bitmap){ if (Render.isConchApp){ if (res.bitmap.source.releaseTexture){ ...
来源: Laya_社区 发布时间: 20171213