• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 87 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0037 秒)

11. 性能测试-卡通人物2 [ 91%]

...Laya.stage.screenMode = Stage.SCREEN_HORIZONTAL; Stat.enable(); Laya.stage.loadImage("res/cartoon2/background.jpg", 0, 0, 1280, 900); this.createCharacters(); text = new Text(); text.zOrder = 10000; text.fontSize = 60; text.color = "#ff0000" Laya.stage.addChild(text); Laya.timer.frameLoop(1, this, t...

来源: Laya2.0_示例 发布时间: 20241117

12. 用Loader加载完atlas,然后使用animation播放问题 [ 90%]

...oader.ATLAS, true); 加载完成后 this._ani = new Animation(); this._ani.loadImages(这里传入解析好的urls) 会提示重复加载 为什么我都加载完了 还需要用ani的loadImages 有没有别的办法 我不想用animation.loadAtlas这个方法 这个方法检测不到加载失败 20...

来源: Laya_社区 发布时间: 20171212

13. laya animation播放图片集合,切换时会闪烁一下 [ 88%]

...n = new Laya.Animation(); this.ui.addChild(this.animation); this.animation.loadImages(images); this.animation.interval = 70; this.animation.play(0); return  this.animation } 我不知道你是怎么做的。这样是没问题的 2019-03-25 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个...

来源: Laya_社区 发布时间: 20190325

14. loadImage 加载图片,怎么清理当前正在加载的图片 [ 88%]

loadImage 加载图片,怎么清理当前正在加载的图片 用 loadImage 加载很多图片,然后在某个时机需要清理这些加载的图片,用了    Laya.loader.cancelLoadByUrl(_urlVo.url); Laya.loader.clearTextureRes(_urlVo.url); Laya.loader.clearRes(_urlVo.url)    但是在...

来源: Laya_社区 发布时间: 20200420

15. animation图片集路径的问题 [ 87%]

...被转义 调用的时候加载不出来?怎么解决 ?或者Animation.loadImages方法的url路径规范是什么?demo里面凤凰的例子能否给源码让看看路径是什么格式 附件 : --> 2016-08-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

来源: Laya_社区 发布时间: 20160822

16. Sprite.loadImage加载失败绘制报错 [ 87%]

Sprite.loadImage加载失败绘制报错 native2.0下,如果直接用Sprite的loadImage去加载图片,若图片加载失败,则绘制报错 附件 : --> 声明时实例化导致报错.zip 图片不存在报错.zip 2018-10-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...

来源: Laya_社区 发布时间: 20181025

17. 使用loadImage加载一个图片后的点击事件 [ 86%]

使用loadImage加载一个图片后的点击事件 var Sprite = Laya.Sprite; var ape = new Sprite(); Laya.stage.addChild(ape); ape.loadImage(img,360, 300, 60, 60, Laya.Handler.create(this, function(){         ape.on(Laya.Event.CLICK, this, function(){         console.log(111)     }) }));...

来源: Laya_社区 发布时间: 20180609

18. Sprite-旋转缩放 [ 85%]

...232628"; createApe(); })(); function createApe() { ape = new Sprite(); ape.loadImage("../../res/apes/monkey2.png"); Laya.stage.addChild(ape); ape.pivot(55, 72); ape.x = Laya.stage.width / 2; ape.y = Laya.stage.height / 2; Laya.timer.frameLoop(1, this, animate); } function animate(e) { ape.rotation +...

来源: Laya_示例 发布时间: 20241117

19. Sprite-旋转缩放 [ 84%]

...() { this.ape = new Laya.Sprite(); Laya.stage.addChild(this.ape); this.ape.loadImage("res/apes/monkey2.png"); this.ape.pivot(55, 72); // this.ape.pos( Laya.stage.width / 2, Laya.stage.height / 2); this.ape.x = Laya.stage.width / 2; this.ape.y = Laya.stage.height / 2; this.scaleDelta = 0; Laya.timer....

来源: Laya2.0_示例 发布时间: 20241117

20. 其他引擎的Demo-Example_23 [ 83%]

...caleMode = Stage.SCALE_NOBORDER; // create a background texture Laya.stage.loadImage("../../res/pixi/laserBG.jpg"); Laya.stage.frameLoop(1, this, animate); })(); function animate() { if (tick > frequency) { tick = 0; // iterate through the dudes and update the positions var laser = new Sprite(); las...

来源: Laya_示例 发布时间: 20241117