Hi Community,
I am trying to receive raw TUIO data, underlying structure is as known OSC. It works when I am testing it in the unity development environment but fails when i am trying to run my builded exe file.
I am scipting with c# and I am using the c# reference implementation which can be found here:
http://sourceforge.net/projects/reactivision/files/TUIO%201.1/TUIO-Clients%201.1.5/TUIO11_NET-1.1.5.zip/download?use_mirror=netix&download=
From here:
http://tuio.org/?software
What I did was to copy the folder TUIO and OSC.NET to my Assets folder. From there I can use them in my scripts.
Hmm so its working fine when running the project within the unity development environment… After build and starting the exe no reaction when sending TUIO data. Looking into the output_log.txt file that was created by the .exe, I see an excepion that comes up with the first TUIO message sent, saying this:
An exception was thrown by the type initializer for OSC.NET.OSCPacket
null packet
This seems to come up with every TUIO data that was sent.
The class OSCPacket is abstact:
abstract public class OSCPacket
Could this cause the problem?
Not sure as its running fine when not starting the exe, so i was thinking it might be some missing ressources or sth?
Maybe someone else has a smart idea?
Thanks & Cheers,
Tobi