jacksondunstan / UnityNativeScripting

Unity Scripting in C++
https://jacksondunstan.com/articles/3938
MIT License
1.33k stars 135 forks source link

A small idea to embed Python in C++ #31

Closed sekkit closed 5 years ago

sekkit commented 5 years ago

Embedding Python by using Pythonnet(a .net cpython wrapper) is working with Unity. But il2cpp compilation is very headache with that implementation. Will embed Python directly within UnityNativeScripting a solution?

sekkit commented 5 years ago

Explanation: why embed scripting languages, because of it's hot reload nature which is common practice in Commercial use.

jacksondunstan commented 5 years ago

Any C++ code you want to add to the native side should compile just fine. I don't know enough about embedding Python, but it seems like a possible use of this project.