大约有 233 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
Laya.Sprite loadImage 参数问题 第一天学习laya,遇见个问题。api上对loadimage的描述是: loadImage(url:String, x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0, complete:Handler = null) 官方文档也是这么用的:http://ldc.layabox.com/doc/?nav=zh-ts-1-3-...
来源: Laya_社区 发布时间: 20200522
sprite.loadImage加载图片怎么设置要显示的x,y坐标和宽高? 代码: import TiledMap = Laya.TiledMap; class GameMain{ private tMap:TiledMap; constructor() { Laya.init(935, 224, Laya.WebGL); this.tMap = new TiledMap(); var viewRect: Laya.Rectangle = new Laya.Rectangle(0, 0, Laya.stage...
来源: Laya_社区 发布时间: 20190214
...创建完毕,此方法只执行一次 */ 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
... constructor() { Laya.init(1000,800); this.img = new Laya.Sprite; this.img.loadImage(this.plane1); Laya.stage.addChild(this.img); this.img.graphics.clear(); this.img.loadImage(this.plane2); Laya.stage.addChild(this.img) } } new Main(); 出来的结果是两张图合并到了一起, 于是我再尝...
来源: Laya_社区 发布时间: 20180406
...aya.init(640, 1000); rule_ct = new Sprite(); rule_ct.loadImage("rule_txt.jpg", 0, 0, 0, 0, function(){ rule_ct.width = 1280; }); 改变Sprite的宽高, 图片并未变化是怎么回事? 2017-04-07 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被...
来源: Laya_社区 发布时间: 20170406
...Laya.stage.addChild(photoimg); photoimg.mask=maskimg; photoimg.loadImage(imgn,0,0,500,500); Laya.timer.once(1000, this, function():void{ maskimg.loadImage("http://img.diyphoto.cn/Mask/im ... ot%3B,0,0,500,500); }); 延时加载 的效果. 模拟加载的东...
来源: Laya_社区 发布时间: 20160923
...的链接 提交 1 个回复 JDL1807996924 赞同来自: qq372035010 img.loadImage("url",0,0,view.width,view.height) 2017-07-10 1 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 twovs 相关问题 matter中layasprite怎么改变图片大小...
来源: Laya_社区 发布时间: 20170710
... Laya.loader.load加载图片时,如果使用worker加载,会调用到loadImage方法,然后执行这句话`this.worker.postMessage(url);`,然后 在worker.js中执行了这句话`onmessage=function(t){var e=t.data;switch(e.type){case"load":loadImage2(e)}};`,e=t.data,也就是上面postM...
来源: Laya_社区 发布时间: 20190605
...xedauto' Laya.stage.screenMode = 'vertical' let bg = new Laya.Sprite(); bg.loadImage("../res/image/interface/intro_bg.png",375,667,1500,1500); bg.pivot(750,750) bg.alpha = 1 bg.rotation = 10图片是正方形的 如上设置过pivot之后 并没有按 正方形中心点旋转 2018-05-19 添加评论...
来源: Laya_社区 发布时间: 20180519
...于创建Sprite获取大小 发现个奇怪的问题,new Laya.Sprite().loadImage() 创建的对象大小不是图像大小,然后用getBounds获取也拿不到真实的大小? 这个建议官方改下接口,理论上width和height用来检测碰撞,那你看到的就应该是碰撞...
来源: Laya_社区 发布时间: 20180530