itisnajim / SocketIOUnity

A Wrapper for socket.io-client-csharp to work with Unity.
MIT License
393 stars 67 forks source link

Private Rooms #23

Closed mohandeep2002 closed 2 years ago

mohandeep2002 commented 2 years ago

socket.to(room).emit("event","message") cant send the data to the Unity Client

itisnajim commented 2 years ago

try this instead io.in(room).emit("event","message")

mohandeep2002 commented 2 years ago

Yes Thank you Its working fine now.

mohandeep2002 commented 2 years ago

When I deploy my server into Heroku, it is not connecting with the Unity Client. How to resolve this