Hi! I'm new here! I need to create a game for Oculus Quest that
allows the users to preselect the eye (right or left) and turn off one
display (or at least paint it black) and create the monocular vision.
How can I do that in Unity? Thank you so mu...
Thank you so much!! I didn't try it yet on my oculus quest 2, but I did
try my python socket with the TCPListener in Unity and they connect!!
Last 2 things (hopefully)! 1. Which function should I use in Unity to
send data to my python app? I guess i...
I think this part of the code is missing, correct? public class
IPManager { public static string GetIP(ADDRESSFAM Addfam) { //Return
null if ADDRESSFAM is Ipv6 but Os does not support it if (Addfam ==
ADDRESSFAM.IPv6 && !Socket.OSSupportsIPv6) { retu...
Hi! is this TcpListener used in your Oculus? Does it connect with any
other socket in the network (for instance if I run a Python socket on my
MacBook)?
Thank you so much!! It was really helpful!! Do you know by chance any
example on the internet which includes a TCPlistener in C# that could be
useful for me to really understand how to move the first steps? I
basically have to connect a Python socket...