Hi, I am a unity developer and I want to develop a game app like Lumosity. It seems that the app is developed by unity3d and the games are web code. I wonder is unity can load javascript games ?
Why would you want to do that? Just build to webgl.
thanks, but I think all games in one unity project is not easy to manager. So I want to know if any mothod for unity to load single js game
Unity by itself can’t load JavaScript games. You would have to embed an HTML5/WebGL capable browser and that’s far more difficult than building the games directly in Unity.
1 Like
Thank you for your answer. May be I can pack my games into assetbundle and load them according choice.
You can include game assets in AssetBundles, but not code. Unless the code is client side interpreted instead of compiled, but then you’re at the same place as before where you’re building a browser or other interpreter into your app, etc, as already mentioned.