Hey guys,
I understand that it’s possible to embed ironpython
Tech Art Survival Guide: Embedding IronPython in Unity = Tech-art hog heaven. What I’m wondering is, what are the implications for mobile deployment?
Will this kind of bundle work on iOS? Will there be problems getting deployed on the app store? What about android? What about webplayer?
According to what I’ve been able to google, it should be technically possible if the build target is FULL 2.0 as opposed to the subset, but the docs also seem to frown on using the full 2.0 runtime, since it adds to startup time and deployment size.
In terms of executing code on the fly at runtime, would it be better to use some kind of dynamic compilation of c#? Or is all of this such a nightmare that I should just do everything remotely possible to avoid it - (ie: make a very limited scripting language out of json or xml)?
Any input is appreciated.