2018-10-12 16:08:16 +00:00
# Migrating a project from UNet (HLAPI)
2018-08-27 14:16:18 +00:00
This guide gives you a step by step instruction for migrating your project from HLAP to Mirror.
Mirror is a fork of HLAPI. As such the migration is straight forward for most projects.
2018-10-12 16:08:16 +00:00
## 1. BACKUP
2018-08-28 08:55:45 +00:00
You have been warned.
2018-08-27 14:16:18 +00:00
2018-10-12 16:08:16 +00:00
## 2. Install Mirror
2018-08-27 14:16:18 +00:00
Get Mirror from the asset store and import it in your project (link to be provided)
2018-10-12 16:08:16 +00:00
## 3. Replace namespace
2018-08-27 14:16:18 +00:00
2018-08-31 03:42:53 +00:00
Replace `UnityEngine.Networking` for `Mirror` everywhere in your project. For example, if you have this:
2018-10-12 16:08:16 +00:00
```C#
2018-08-31 03:36:31 +00:00
using UnityEngine.Networking;
2018-08-27 14:16:18 +00:00
public class Player : NetworkBehaviour {
...
}
```
2018-08-31 03:42:53 +00:00
replace it with:
2018-10-12 16:08:16 +00:00
```C#
2018-08-27 14:16:18 +00:00
using Mirror;
public class Player : NetworkBehaviour {
...
}
```
At this point, you might get some compilation errors. Don't panic, these are easy to fix. Keep going
2018-11-01 20:09:18 +00:00
## 4. Remove channels from NetworkSettings
NetworkSettings in HLAPI have channels, but this is flat out broken. Rather than ignoring your settings we removed channels from NetworkSettings.
2018-08-27 14:16:18 +00:00
For example, if you have this code:
2018-10-12 16:08:16 +00:00
```C#
2018-11-01 20:09:18 +00:00
[NetworkSettings(channel=1,sendInterval=0.05f)]
public class NetStreamer : NetworkBehaviour
2018-08-27 14:16:18 +00:00
{
...
}
```
replace it with:
2018-10-12 16:08:16 +00:00
```C#
2018-11-01 20:09:18 +00:00
[NetworkSettings(sendInterval=0.05f)]
public class NetStreamer : NetworkBehaviour
2018-08-27 14:16:18 +00:00
{
...
}
```
2018-11-01 20:09:18 +00:00
Please note that the default transport (Telepathy), completely ignores channels, all messages are reliable, sequenced and fragmented. They just work with no fuss. If you want to take advantage of unreliable channels use LLAPITransport instead.
2018-08-27 14:16:18 +00:00
2018-10-12 16:08:16 +00:00
## 5. Rename SyncListStruct to SyncListSTRUCT
2018-08-29 13:04:58 +00:00
There is a bug in the original UNET Weaver that makes it mess with our `Mirror.SyncListStruct` without checking the namespace.
Until Unity officially removes UNET in 2019.1, we will have to use the name `SyncListSTRUCT` instead.
2018-08-28 08:55:45 +00:00
2018-11-01 20:09:18 +00:00
For example, if you have definitions like:
2018-08-28 08:55:45 +00:00
2018-10-12 16:08:16 +00:00
```C#
2018-08-28 08:55:45 +00:00
public class SyncListQuest : SyncListStruct< Quest > {}
```
replace them with:
2018-10-12 16:08:16 +00:00
```C#
2018-08-28 08:55:45 +00:00
public class SyncListQuest : SyncListSTRUCT< Quest > {}
```
2018-10-12 16:08:16 +00:00
## 6. Replace Components
2018-08-27 14:33:39 +00:00
Every networked prefab and scene object needs to be adjusted. They will be using `NetworkIdentity` from Unet, and you need to replace that componenent with `NetworkIdentity` from Mirror. You may be using other network components, such as `NetworkAnimator` or `NetworkTransform` . All components from Unet should be replaced with their corresponding component from Mirror.
2018-08-28 21:16:41 +00:00
Note that if you remove and add a NetworkIdentity, you will need to reassign it in any component that was referencing it.
2018-10-12 16:08:16 +00:00
## 7. Update your firewall and router
2018-08-27 14:16:18 +00:00
LLAPI uses UDP. Mirror uses TCP by default. This means you may need to change your router
2018-08-29 13:04:58 +00:00
port forwarding and firewall rules in your machine to expose the TCP port instead of UDP.
This highly depends on your router and operating system.
2018-08-28 09:01:17 +00:00
2018-10-12 16:08:16 +00:00
## Video version
2018-08-28 21:16:41 +00:00
See for yourself how uMMORPG was migrated to Mirror
[![IMAGE ALT TEXT HERE ](http://img.youtube.com/vi/LF9rTSS3rlI/0.jpg )](http://www.youtube.com/watch?v=LF9rTSS3rlI)
2018-08-28 09:01:17 +00:00
2018-10-08 15:16:15 +00:00
## Possible Error Messages ##
2018-10-12 16:08:16 +00:00
* TypeLoadException: A type load exception has occurred. - happens if you still have SyncListStruct instead of SyncListSTRUCT in your project.
2018-08-29 13:04:58 +00:00
2018-10-12 16:08:16 +00:00
* NullPointerException: The most likely cause is that you replaced NetworkIdentities or other components but you had them assigned somewhere. Reassign those references.
2018-08-29 15:33:40 +00:00
2018-10-12 16:08:16 +00:00
* `error CS0246: The type or namespace name 'UnityWebRequest' could not be found. Are you missing 'UnityEngine.Networking' using directive?`
2018-08-29 15:33:40 +00:00
Add this to the top of your script:
2018-10-12 16:08:16 +00:00
```C#
2018-08-29 15:33:40 +00:00
using UnityWebRequest = UnityEngine.Networking.UnityWebRequest ;
```
2018-08-31 03:42:53 +00:00
`UnityWebRequest` is not part of UNet or Mirror, but it is in the same namespace as UNet. Changing the namespace to Mirror caused your script not to find UnityWebRequest. The same applies for `WWW` and all `UnityWebRequest` related classes.