如何在React native中整合团结?

时间:2017-07-18 10:59:20

标签: ios reactjs unity3d react-native

这是否可以集成/配置统一(游戏引擎)与本机反应并开发基于游戏的应用程序?如果有,你能告诉我什么是程序/架构?感谢

1 个答案:

答案 0 :(得分:0)

您可以将WebGL组件嵌入RN应用程序中。然后从某些服务器加载游戏版本。

react-unity-webgl在这里可能会有所帮助。

这些方面的东西

//constructor
this.unityContent = new UnityContent(
  "<YOUR_BUILD_FILE>",
  "<YOUR_UNITY_LOADER_FILE>"
);

//render
render() {
    return <Unity unityContent={this.unityContent} />;
}

enter image description here