How to use xcode game on unity3d

I have a game built on xcode using a c lens. This game should be integrated with another game developed in 3D unity as part of it. How can i do this? What plugins are available to achieve this?

The fact is that I have a 3D unity game, and I have several other games inside the main game (games inside one game). these small games are already built on xcode .. now I have to use these games in a game of basic unity .. something like if I decided to play one of the games that he should download this particular xcode game .. how can I achieve this ?? also if this is achieved. Can I build it on a single android and expect it to work? or should i do it differently for android? Please guide ..

+3
xcode4 unity3d
Nov 30 '11 at 6:24
source share
1 answer

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

If both application modules need to interact at a high frequency, I recommend using the polling method instead of SendMessage due to lack of performance in the latter case.

+9
Nov 30 '11 at 21:23
source share



All Articles