You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/_docs/getting-started/installation.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,26 @@ title: Installation
3
3
permalink: /wiki/installation/
4
4
---
5
5
6
+
### Installer
6
7
To get started with the MLAPI. You need to install the library. The easiest way is to use the Editor installer. Simply download the MLAPI_Installer unity package from the [here](https://github.com/TwoTenPvP/MLAPI/releases). Then press window at the top of your editor and select MLAPI. Once in the MLAPI window, select the version you wish to use and press install.
8
+
9
+
7
10

8
11
9
12
10
13
Once imported into the Unity Engine, you will be able to use the components that it offers. To get started, you need a GameObject with the NetworkingManager component. Once you have that, use the Initializing the library articles to continue.
11
14
12
15
16
+
### Files
17
+
The MLAPI comes with 3 main components
18
+
##### MLAPI.dll + IntXLib.dll
19
+
These two DLL's are the runtime portion. The actual library. *IntXLib.dll is the BigInt library used for the ECDHE implementation*. These files are thus **required**.
20
+
##### MLAPI-Editor.unitypackage
21
+
This unitypackage includes the source files for all the Editor scripts. The UnityPackage will automatically place these source files in the Editor folder to avoid it being included in a build. **While the MLAPI will function without this, it is not designed to work without the editor part and is thus recommended for all users**.
22
+
##### MLAPI-Installer.unitypackage
23
+
This unitypackage includes the source file for the installer. This component is totally optional. The Installer can help you manage versions. If you don't want to use the installer, you can simply place the MLAPI.dll, IntXLib.dll and the Editor source files in your project and it will work just as well.
13
24
14
25
15
-
**Important note**
16
26
27
+
### Important note
17
28
_The wiki, API references, readme and other documentation like information is not updated on a per commit basis. They are being updated on a per release basis. Thus using in development features on the master branch is not discouraged but there might not be any documentation except the commit messages._
0 commit comments