如何在python脚本中运行unity3d代码(用c ++编写)?

时间:2018-06-04 21:29:14

标签: python c++ python-3.x unity3d embedding

我有多个用c ++编写的代码,这些代码对unity3d动画给予了推荐。我想在我的python脚本中运行这些代码。 例如,我在python中有以下脚本需要针对不同情况运行特定动画:

$ if f1 == 1:
       for it in func():
             if func2[it] == item:
                 -- Run animation5.cpp (the unity3d c++ code).
             else: 
                 -- Run an animation2.cpp (the unity3d c++ code).

我已经尝试了多个库将C ++的API连接到python(在c ++中嵌入python),如boost.python,但它们无法解决我的问题,这个问题的最佳解决方案是什么?

0 个答案:

没有答案