Salah Alshaal
Salah Alshaal

Reputation: 857

Send data from UWP app to Unity3D on the same machine

I have a universal apps getting data from Microsoft's Band 2 (accelerometer) and want to export the processed data in the app to the unity project to be used as input control. The data will be frequent, so real-time response is preferred.

What should I learn or use to achieve this?

Upvotes: 0

Views: 447

Answers (1)

Nika Kasradze
Nika Kasradze

Reputation: 3019

I'm pretty sure it would be easier to write a plugin for Unity to connect to Band directly rather than to connect to an app that connects to Band (actually I have no clue how to do that).

Having that in mind, you probably should:

  1. download the appropriate Band SDK from the official website
  2. Read about writing plugins for Unity for the platform you need (Desktop/WP, Android, iOS)
  3. Draw a pentagram and hope for the best

Upvotes: 1

Related Questions