大约有 94 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0096 秒)
...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
...rl(url, type, thisLoader) { if (MiniAdpter.isZiYu) { thisLoader._loadImage(url, false); return; } if (MiniFileMgr.isLocalNativeFile(url)) { thisLoader._loadImage(url, false); return; } if (!MiniFileMgr.isLocalNativeFile(url) && !MiniFileMgr.getFil...
来源: Laya_社区 发布时间: 20191129
...这个样能加载。 但是 var roleAni = new Laya.Animation(); roleAni.loadImages(); roleAni.play(); Laya.stage.addChild(roleAni); 这样就会报路劲错误 var urls = [ 'img/food/f1.png', 'img/food/f2.png', 'img/food/f3.png', 'img/food/f4.png', 'img/food/f5.png', 'img/food/f6.png',...
来源: Laya_社区 发布时间: 20170718
... var sp:Sprite = new Sprite(); sp.loadImage(url); addChild(sp); sp.pos(100, 200); trace("url=" + url);//blob:file%3A///1c4effc4-4022-4ab5-8feb-e39ff76b7410 trace(sp.width);//0...
来源: Laya_社区 发布时间: 20170417
微信小游戏用loadImage加载网络上的图片,调试模式下能够正常显示,但关掉高度模式后无法显示,给这个图片设置了大小和监听,点击对应的位置时,又能接收到回调,就是图片显示不出来 微信小游戏用loadImage加载网络上的图...
来源: Laya_社区 发布时间: 20180822
...不上,我直接贴代码好了 var fireIcon =new Laya.Image(); fireIcon.loadImage("laya/assets/res/image/fireIcon.png",0,0,200,200,new Laya.Handler(this,onloadImage)); function onloadImage(){ console.log('图片加载结束'); Laya.stage.addChild(fireIcon); } 资源的结构为: |-.laya |-bin |-...
来源: Laya_社区 发布时间: 20180619
...画的播放实质就是定时切换Graphics对象。 使用set source、loadImages(...)、loadAtlas(...)、loadAnimation(...)方法可以创建动画模版。使用play(...)可以播放指定动画。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefin...
来源: laya_api 发布时间: 20170929
...:39 浏览: 839 关注: 2 人 jacksing888 • 2017-09-11 14:55 我的是用loadImage 路径也是用的图集里面取小图的方法 大部分情况下 是正常的 从日志看 有一小部分人 竟然发起了http单独请求某个小图 按理说 图集里面有缓存是不会发起url请求单...
来源: Laya_社区 发布时间: 20170911
调用图集中小图片失败 var sp:Sprite=new Sprite(); sp.loadImage("img/btnbg2.png"); Laya.stage.addChild(sp); var sp1:Sprite=new Sprite(); sp1.loadImage("system/twoP.png"); Laya.stage.addChild(sp1); img图集中的小图可以调用到,system的图集调用不到,在浏览器的资源列表...
来源: Laya_社区 发布时间: 20170518
...0]; var reader=new FileReader(); reader.onload=function () { this.headIcon.loadImage(this.result); } reader.readAsDataURL(file); } 是这样显示的吗?我的为何也不显示,通过html的input上传的图片,然后通过FileReader来获取图片数据,最后填充image.skin和image.loadI...
来源: Laya_社区 发布时间: 20161212