使用phaser框架开发h5小游戏,结果页游戏排行榜,phaser如何动态加载网络图片?
使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
官网就有现成例子 http://phaser.io/examples/v3/view/loader/image/load-image-on-click
甚至可以直接用网络地址