大约有 7 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)
...交 2 个回复 浪货界扛把子 赞同来自: cuixueying 给精灵设置loadimage后不能直接获取它的大小; 问题:是不是只有加载完图片在能真正获取他的width和height? 本人当前解决方法:提前加载资源,在回调中进行操作设置 text_load_wid...
来源: Laya_社区 发布时间: 20170118
...g",0.8,this.getBase64); } getBase64(base64){ StageUI.instance.saveBase64.loadImage(base64); } 附件 : --> TongDaoTieTu.zip 2019-01-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 这...
来源: Laya_社区 发布时间: 20190111
...设置宽高,且宽高大于panel宽高 var bg:Sprite=new Sprite(); bg.loadImage("bg2.png",0,0,0,0,Handler.create(this,onLoadedImage,[panel])); bg.size(600,800); panel.addChild(bg); } //在子对象加载完成后,设置panel.scrollbar的值以及位置 private function onLoadedImage(panel:Panel...
来源: Laya_社区 发布时间: 20170719
...d(){ BackGround.__super.call(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("comp/bg.png"); this.addChild(this.bg1); } Laya.class(BackGround,"BackGround",_super); return BackGround; })(Laya.Sprite)代码我这样写可以正常显示,你试试 2017-02-22 0 1 分享 微博 QZONE 微信 为...
来源: Laya_社区 发布时间: 20170222
...{ super(); Laya.init(500, 300, Laya.WebGL); var bg = new Laya.Sprite(); bg.loadImage("comp/hunter.jpg"); this.addChild(bg); Laya.timer.frameLoop(1,this,this.move); // drawSomething(); } move() { sp = new Laya.Sprite(); Laya.stage.addChild(sp); //画曲线 if(x<100){ x++; } sp.graphics.clear(); sp...
来源: Laya_社区 发布时间: 20190520
...创建完毕,此方法只执行一次 */ onAwake(): void { this.sprite.loadImage("atlas/comp/image.png"); //纹理:图片路径 this.sprite.pos(Laya.stage.width >> 1, Laya.stage.height >> 1); //位置:屏幕中心 this.sprite.x = Laya.stage.width/2; //x、y分别设置位置 this.s...
来源: Laya3.0_文档 发布时间: 20241014
...件。 EventDispatcher load(url:String):void 设置播放源。 Video loadImage(url:String, complete:Handler = null):Sprite 加载并显示一个图片。相当于加载图片后,设置texture属性 注意:2.0改动:多次调用,只会显示一个图片(1.0会显示多个图片),x,y,...
来源: Laya2.0_api 发布时间: 20190513