Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/connffuused/acf.unitylitenetlib
Simple LiteNetLib implementation test project for ACF(My Private Project).
https://github.com/connffuused/acf.unitylitenetlib
chat demo example litenetlib sample server udp unity
Last synced: about 1 month ago
JSON representation
Simple LiteNetLib implementation test project for ACF(My Private Project).
- Host: GitHub
- URL: https://github.com/connffuused/acf.unitylitenetlib
- Owner: connffuused
- Created: 2021-10-01T04:29:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-29T08:58:05.000Z (about 3 years ago)
- Last Synced: 2024-11-09T06:45:25.446Z (about 2 months ago)
- Topics: chat, demo, example, litenetlib, sample, server, udp, unity
- Language: C#
- Homepage:
- Size: 140 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ACF.UnityLiteNetLib
ACF 작업을 위한 LiteNetLib 구현 간단 테스트 프로젝트 (UDP Chat)
Simple LiteNetLib implementation test project for ACF(My Private Project).## QuickStart
1. clone repository
2. open project with compatible unity editor
3. modify command line options in `Assets/Editor Default Resources`.
- you can edit this in `Project Settings/Command Line`
- this options for editor only.
4. Build
5. Create `client.bat` and `server.bat`### server.bat
```sh
Build\LiteNetChat.exe --scene=1 --serverPort=29320
```### client.bat
```sh
Build\LiteNetChat.exe --scene=2 --address=127.0.0.1 --port=29400 --serverPort=29320
```- `-scene` : the index of being loaded scene.
- `-address` : server ip address ex) 123.45.678.xxx , 127.0.0.1, 192.168.0.20
- `-port` : client listening port
- `-serverPort` : server listening port![image](https://user-images.githubusercontent.com/79823287/135565993-a9ec01aa-7f35-44f7-a31b-b1699518944e.png)