# LockReloadAssemblies()

> Prevents loading of assemblies when it is inconvenient.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor](/engine/6000.5/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public static void LockReloadAssemblies()
```

### Remarks

For example during drag operations you might want to prevent assembly reloading to not lose state during the drag. Each LockReloadAssemblies must be matched by UnlockReloadAssemblies, otherwise scripts will never unload. Unity automatically prevents reloading during mouse down.

Additional Resources: [EditorApplication.UnlockReloadAssemblies](/engine/6000.5/script-reference/unityeditor/editorapplication/unlockreloadassemblies.md).
