本文介绍了将Firebase与Unity和WebGL一起使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我当时正在考虑在基于Unity的游戏中使用Firebase远程配置.

I was thinking of using Firebase remote config with my Unity based game.

我打算用WebGL在Facebook上发布游戏,并且想知道是否将WebGL的Firebase实现作为SDK的一部分?

I intent to release the game on Facebook with WebGL, and was wondering if there is Firebase implementation for WebGL as part of the SDK?

推荐答案

Firebase-Unity SDK仅用于 IOS和Android 平台.但是,您可以实现插件以使用用于WebGL构建的Web API .

Firebase-Unity SDK is only for IOS and Android Platforms. However you can implement plugin to use web API for your WebGL build.

如果要在Facebook平台上发布游戏,最好使用 Parse.com .但是,主SDK不支持WebGL,因为其多线程结构而是可以使用与WebGL兼容的替代版本.

If you would release your game on Facebook platform its better to use Parse.com. However WebGL is not supported in main SDK because its multi-threaded structure but an alternative version is available which works with WebGL.

这篇关于将Firebase与Unity和WebGL一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 18:52