3

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 available to achieve this??

The thing is that.. i have a unity3d game and i have few 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 inside the main unity game.. something like if i chose to play one of the games it has to load that particular xcode game.. how can i achieve this?? also if this is achieved.. can i build it on unity-android and expect it to work? or do i have to do it differently for android? Please guide..

Sharanya K M
  • 1,805
  • 4
  • 23
  • 44
  • Can you elaborate further on what you mean by "integrat[e]"? Is this meant to be a bundle, or a mini-game within a larger game, or? – DuckMaestro Nov 30 '11 at 16:26
  • @DuckMaaestro- A game is being built on unity3d in which i have to use a small already developed xcode game as a part of it.. a mini game (xcode game) within a larger game(unity game)... – Sharanya K M Dec 01 '11 at 05:16

1 Answers1

9

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

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.

Community
  • 1
  • 1
Kay
  • 12,918
  • 4
  • 55
  • 77
  • So if it's what you are looking for mark it as accepted. If not but it's kind of useful vote it up. :-) – Kay Dec 01 '11 at 08:19
  • its is not completely what i was looking for, but this cleared a lot of things in my head.. i did vote it as useful :) :) thank you :) :) – Sharanya K M Dec 01 '11 at 09:23
  • "..vote it", the small triangle at the upper left corner of my answer (the upper one above the zero). After clicking the vote count will increase, like it did when I upvoted your question :-) – Kay Dec 01 '11 at 10:31
  • it says if i have to vote i need 15 reputations.. i have only 9 :( :( :( – Sharanya K M Dec 01 '11 at 11:23
  • Unfortunately, Clever Martian appears to have deleted his blog, but here is an archived version: http://web.archive.org/web/20120807041729/http://clevermartian.com/blog/?p=59 – ThomasW Mar 18 '13 at 08:00