I am new on Stackoverflow and thanks for every help in advance.
I created a WPF project to read pressure datas from a force measurement plate. I realized that the WPF application is too slow in order to use it as a fluently running visualization.
Now (after some recommendations)I want to use Unity. Unfortunately I am a greenhorn in unity.
My code delivers the relevant data in var data=new List<Tuple<int,int,double>>();
. In addition the data are live datas thus the List is dynamically.
I noticed that you can add scripts to assets in unity. What is an easy way to implement my code and use the List in unity? Or should I rewrite my code in the unity script that I get my measurements data in unity directly?
thanks so much for your help.