0

I'm trying to create an iPad app that shows a controller and that controller sends data to a computer running the actual game. So I'm trying to send the value of the two joysticks on the iPad to the computer to control movement and camera without actually showing the joysticks on the computer. The same goes for the iPad; I only want to see the joysticks, not the actual gameplay. What is the best way of going about this? Maybe I'm just not fully aware of the functionally of the NetworkView object, but is there a simple way of only getting the transform data of the joystick without showing it? Or should I be doing something else entirely. Is there a way to just send raw data, like an array of ints, over via Network?

Rice_Crisp
  • 1,242
  • 1
  • 16
  • 33

1 Answers1

0

What is the best way of going about this?

You should check out some tutorials about networking and learn it's basics first. Packet Basics Networking Basics C Sharp

Is there a way to just send raw data, like an array of ints, over via Network?

It is ofc possible to send raw data like int arrays, anyways you will just send them as bytes - but that is actually explained in the links I put up.

Or should I be doing something else entirely?

It will take a lot of time to accomplish your goals, if you are new to networking and want to put yourself up with a project like yours, but nothing is impossible.

good luck though ;-)