Skip to content

mul83rry/TcpServerKit_Unity

Repository files navigation

TcpServerKit_Unity

TcpServerKit Unity client implement

get server package https://github.com/mul83rry/TcpServerKit

import TcpServerKit_UnityCLient.unitypackage

Import `TcpServerKit_UnityClient.unitypackage`

Drag MuClient.prefab from TcpClientKit folder to hierarchy and set ip and port

Add required namespace

using TcpClientKit;
using static TcpClientKit.Client;

Set connection event.

Client.ConnectResult += (ConnectingStatus cs) =>
{
};

Add listeners (if exists will be replaced)

Client.On("Login", LoginResult);

Start client

Client.InitServer(); or InitServer(Encoding type);

For reconnecting

Client.CloseConnection();
Client.InitServer(); or InitServer(Encoding type);

server package https://www.nuget.org/packages/TcpServerKit

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published