How to use an xcode game on unity3d

后端 未结 1 1475
误落风尘
误落风尘 2021-01-20 04:00

I have a game built on xcode using objective c. this game needs to be integrated with another game developed in unity3d as a part of it. how can i do this? what plugins are

相关标签:
1条回答
  • 2021-01-20 04:43

    Have a look at the following resources about mixing Unity3D code with Objective-C native code:

    • Mixing Unity generated code with Objective-C in iOS?
    • iPhone & Unity3D: Integrating 3rd Party Static Libraries in Unity3D Generated XCode Projects
    • Unity Native Plugins: OS X

    If both application modules need interact on a high frequency, I recommend a polling approach instead of SendMessage, because of a perfomance lack in the latter case.

    0 讨论(0)
提交回复
热议问题