是否可以集成/配置unity(游戏引擎)和 native React并开发基于游戏的应用程序?如果是,您能告诉我程序/架构是什么吗?谢谢
最佳答案
您可以将WebGL组件嵌入RN应用程序中。然后从某些服务器加载游戏版本。
react-unity-webgl在这里可能会有所帮助。
这些线上的东西
//constructor
this.unityContent = new UnityContent(
"<YOUR_BUILD_FILE>",
"<YOUR_UNITY_LOADER_FILE>"
);
//render
render() {
return <Unity unityContent={this.unityContent} />;
}