I have a question to all the people that have a good overview and need an advice which direction to go.
I have a unity VR and need to receive data from another application that is programmed in C++.
Both runnig on the same machine and I have at first only to send some numbers.
What would be a good approach?
Somebody said TCP/IP over localhost would be a good solution…if this is the best way…which direction would be a good thing to go. I read about the Multiplayer routines, that Unity3D allready has and about the Unity Networking Transport Layer (for smaller stuff).
The ugliest way would be to write in an file and the VR will read it, but thats not a solution for me.
Is there a better way or is it TCP/IP. And if TCP/IP is the best way the TRANSPORT LAYER API?
Its realtime…so lets say the vR is runnning vor 30 minutes and gets a stream of integer values and I have to detect if there is a change in the stream and adapt the VR…its also possible that the other application(not the VR) is detecting a change and sends a flag to the Unity VR…and then the VR is changing. Both is possible for me.