大约有 412 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
Laya_社区(286) Laya2.0_api(75) Laya3.0_文档(23) Laya2.0_文档(19) laya_api(3) Laya3.0_api(2) Laya2.0_示例(2) Laya_示例(2)
... const { x, y, width, height } = this.box Laya.loader.load('comp/image.png').then(v=>{ const texture = this.box.drawToTexture(width, height, x, y) as Laya.Texture this.snapshot.texture = texture }); } 2024-06-05 0 0 分享 微...
来源: Laya_社区 发布时间: 20240425
...EEN_HORIZONTAL; loadres(); function loadres(){ var res=[ {'url':'res/atlas/comp.json'} ] Laya.loader.load(res,Laya.Handler.create(this,Main)); } function Main(){ Laya.stage.addChild(new loginUI()); } })(); 附件 : --> 2017-11-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20171123
...<Graphic className="laya.editorUI.GraphicContainer" defaultValue="skin='comp/sound.png'" skinLabel="url" icon="Box" groups="公用,常用,宽高及位置,旋转及缩放" drag="3"> <prop name="x" tips="X轴坐标" type="number" default="" group="宽高及位置" /> <prop name="y" tips...
来源: Laya_社区 发布时间: 20180619
...a.stage.bgColor='#ffffff'; Laya.stage.addChild(new Laya.Image('comp/img/img1.png')); Laya.timer.once(1000, this, this.delayShow); } delayShow() { let canvas = Laya.stage.drawToCanvas(Laya.stage.width, Laya.stage.height, 0, 0); let str = can...
来源: Laya_社区 发布时间: 20230419
...这张图片。 但是我换个默认的图集Laya.loader.load("res/atlas/comp.atlas", Handler.create(this, this.createView)); 却能拿到图集中的图片。是我打包图集的问题吗?这两个图集的.atlas文件都有在res下面啊。 2018-03-26 添加评论 免费帖 --> 分享 微博 ...
来源: Laya_社区 发布时间: 20180326
...igLoaded=function(){ Laya.init(600,400); Laya.loader.load([{url:"res/atlas/comp.json",type:"atlas"}],Handler.create(this,this.onLoadUi)); } __proto.onLoadUi=function(){ Laya.timer.loop(100,this,this.onLoaded); } __proto.onLoaded=function(){ if(this.isOpen){ return; } this.isOpen=true; var testView=n...
来源: Laya_社区 发布时间: 20190517
...draw); } private function draw():void { texture = Laya.loader.getRes("comp/lhjicon_5.png"); var temp:Texture = Texture.createFromTexture(texture,0,0,texture.sourceWidth/2,texture.height/2); IconSpr.graphics.drawTexture(temp,0,0,temp.sourceWidth,temp.height); temp.destroy(true); } 这样 ...
来源: Laya_社区 发布时间: 20180118
...自己的图片时,发现无法平铺,而就是官方demo中自带的comp.png也无法平铺,不知道对格式要求是什么样,下面把案例上传了,该案例中用同种方式显示了三张不同的图,可以发现,就只有官方纹理平铺案例的素材可以展现效果,...
来源: Laya_社区 发布时间: 20200523
...onLoaded),Handler.create(this, onProgress)); //Laya.loader.load("res/atlas/comp.atlas", Handler.create(this, onLoaded),Handler.create(this, onProgress)); } private function onProgress(v:Number):void { trace("onProgress",v); } 不管添加多少资源,onProgress都只会调用一次 之后...
来源: Laya_社区 发布时间: 20180428
...0)) as Camera; camera.transform.translate(new Vector3(0, 1, 0)); camera.addComponent(CameraMoveScript); })); } ``` 我们点击加载场景,再来看状态。 ![](img/2.png)(图2) 在场景显示出来后,我们可以看到在 **Stat** 面板中 **GPUMemory** 有一个比较明显的涨幅。 ...
来源: Laya2.0_文档 发布时间: 20210715