使用phaser框架开发h5小游戏,结果页游戏排行榜,phaser如何动态加载网络图片?

发布于 2022-09-11 19:31:33 字数 550 浏览 16 评论 0

使用phaser框架开发h5小游戏的时候,最后有个游戏排行榜,其中就涉及到需要显示用户头像,在游戏过程中,phaser如何动态加载网络图片?

在phaser中正常使用一个图片,需要在preload中提取load出来

//加载图片
preload:function(){
          this.preload = function(){
            that.game.load.crossOrigin = 'anonymous'; // 设置跨域
            that.game.load.image('bg', '/game/game-bg.png');
          }
        }
        
        //使用图片
        created:function(){
          this.create = function(){
            that.game.add.tileSprite(0, 0,that.game.width,that.game.height, 'bg');
          }
        },

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心奴独伤 2022-09-18 19:31:33

官网就有现成例子 http://phaser.io/examples/v3/view/loader/image/load-image-on-click

this.load.once('complete', addSprites, this);
this.load.image('pic', 'assets/pics/turkey-1985086.jpg');
this.load.image('titan', 'assets/pics/titan-mech.png');
this.load.start();

甚至可以直接用网络地址

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文