Skip to content

taliove/weapp-phaser3-adapter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

微信小游戏 phaser3 适配解决方案

注意:当前在真机环境未测试通过

使用方法

将文件weapp-phaser3-adapter.js拷贝至微信小程序目录,并在入口引用即可。

import './js/libs/weapp-phaser3-adapter'

游戏配置

在初始化phaser3实例时,配置建议加上:

let config = {};  // your config

if (window.canvas) {
    config.canvas = window.canvas;
}

资源的加载

在微信端使用时,注意文件的加载。如果资源在远端,则按如下方式指定远端地址:

this.load.setBaseURL("http://your.domain.name");

@taliove 2018