|
1 |
| -# Web Sockets |
| 1 | +<div align="center"> |
| 2 | + |
| 3 | +<img src="https://raw.githubusercontent.com/elraccoone/unity-tweens/master/.github/WIKI/logo.jpg" height="100px"></br> |
| 4 | + |
| 5 | +# Tweens |
| 6 | + |
| 7 | +[]() |
| 8 | +[](./LICENSE.md) |
| 9 | +[](https://paypal.me/jeffreylanters) |
2 | 10 |
|
3 | 11 | Unity Web Sockets provides a wrapper for using Web Sockets, an advanced technology that allows real-time interactive communication between the client browser and a server. It uses a completely different protocol that allows bidirectional data flow, making it unique against HTTP.
|
4 | 12 |
|
5 |
| -> NOTE When using this Unity Package, make sure to **Star** this repository. When using any of the packages please make sure to give credits to **Jeffrey Lanters** somewhere in your app or game. **THESE PACKAGES ARE NOT ALLOWED TO BE SOLD ANYWHERE!** |
| 13 | +When using this Unity Package, make sure to **Star** this repository. When using any of the packages please make sure to give credits to **Jeffrey Lanters / El Raccoone** somewhere in your app or game. **It it prohibited to distribute, sublicense, and/or sell copies of the Software!** |
6 | 14 |
|
7 |
| -## Install |
| 15 | +**≪** |
| 16 | +[**Installation**](#installation) · |
| 17 | +[**Documentation**](#documentation) · |
| 18 | +[**License**](./LICENSE.md) · |
| 19 | +[**Sponsor**](https://paypal.me/jeffreylanters) |
| 20 | +**≫** |
8 | 21 |
|
9 |
| -``` |
10 |
| -"com.unity-packages.web-sockets": "git+https://github.com/unity-packages/web-sockets" |
11 |
| -``` |
| 22 | +**Made with ♥ by Jeffrey Lanters** |
| 23 | + |
| 24 | +</div> |
12 | 25 |
|
13 |
| -[Click here to read the Unity Packages installation guide](https://github.com/unity-packages/installation) |
| 26 | +## Installation |
14 | 27 |
|
15 |
| -## Dependencies |
| 28 | +Install using the Unity Package Manager. add the following line to your `manifest.json` file located within your project's packages directory. |
| 29 | + |
| 30 | +```json |
| 31 | +"nl.elraccoone.web-sockets": "git+https://github.com/elraccoone/unity-web-sockets" |
| 32 | +``` |
16 | 33 |
|
17 |
| -- CSharp 4.x (You can change this in Unitys 'Player settings') |
| 34 | +## Documentation |
18 | 35 |
|
19 |
| -## Usage |
| 36 | +### Example Usage |
20 | 37 |
|
21 | 38 | ```cs
|
22 | 39 | using UnityEngine;
|
23 |
| -using UnityPackages.WebSockets; |
| 40 | +using ElRaccoone.WebSockets; |
24 | 41 |
|
25 | 42 | public class SocketService : MonoBehaviour {
|
26 | 43 |
|
|
0 commit comments