Duality Docs Developer manual for the Duality game engine
Edit Page

Using External Libraries

This article will outline how to use both internal and external libraries in your Duality game or editor plugin, as well as the details of what works and doesn’t work.

Adding a Reference Back ↑

In general, when you want to use a (managed) library in your game plugin, you will have to add a reference to it in Visual Studio. To do that, open the Solution Explorer, expand your project item and right-click on the References child item in order to select “Add Reference”. In the dialog, click “Browse” and select the library you want to reference.

You can also use the Visual Studio integrated NuGet Package Manager and add your dependency as a package. In doing so a PackageReference element will be added to the csproj, see for more info about PackageReferences. Since v4 this is now the default way Duality manages packages.

Depending on the type of library you’re referencing, you may need to take care of some additional things. Being able to compile your game plugin with the new reference is one thing, making sure Duality is able to locate it at runtime is another one.

Library Types Back ↑

There are various kinds of libraries that you can use with Duality, some of them with different requirements than others.

Duality Plugins Back ↑

In the easiest case, you simply want your game plugin to reference another Duality plugin. Just use the “Add Reference” dialog and browse to the dll or project file of the plugin, and that’s it. No additional steps required.

However, you should be careful not to mix core and editor plugins. While an editor plugin can reference whatever it wants, a core plugin should never rely on an editor plugin - otherwise, your game would depend on the presence of an editor, rendering the launcher application non-functional.

Unless your plugin directly depends on a plugin you can add the reference to either the GameLauncher project for core plugins or the GameEditor project for editor plugins.

Managed Libraries Back ↑

You can reference managed libraries that are not Duality plugins as well, same procedure as above. In most cases, that’s all you need to know.

Portability and (non-) .NET Standard Class Libraries Back ↑

By default, Duality game plugins are .NET Standard Class Libraries, which means that they limit themselves to a subset of .NET that is known to be portable across all .NET implementations. To keep this contract intact, you can only reference libraries that use a similar or smaller subset of .NET, thus retaining portability. See the microsoft .NET Standard docs page for more info about .NET Standard.

There may be cases where this gets in the way, or you simply don’t care about other platforms. In this case can modify the TargetFramework element in the csproj file of your plugin so it targets net472.

32 Bit / x86 Managed Libraries Back ↑

Usually, managed libraries are compiled as AnyCPU, meaning that they simply don’t care about processor architecture. All of Duality’s libraries and dependencies are set up that way, so both launcher and editor will run either as a 32 bit or 64 process depending on the operating system.

If you’re using a managed library that strictly requires a specific processor architecture, you might need to trick Duality into launching specifically as a 32 bit or 64 bit process. The “correct” way to do so would be to manually recompile both launcher and editor application with the required processor architecture set, but you can also use the corflags tool to set the 32 bit flag on either one without recompiling. To verify your success, run the launcher and take a look at the logfile.txt: There should be a line near the beginning that tells you whether the application is being run as a 64 bit process or not.

Native Libraries Back ↑

In the .Net world, you can’t directly reference unmanaged (i.e. native) libraries, but you can invoke their functionality using so-called P/Invoke methods. This is an advanced topic that you likely either don’t need or already know more about than a Duality-specific wiki page can tell you. However, if you do use a native library, make sure to put it into the Duality root folder, directly next to DualityLauncher.exe or DualityEditor.exe. Native libraries won’t be found if they are in the Plugins folder.

If you definitely need your native dependency to be located and found somewhere else, try adding its directory to the process-local PATH environment variable right before accessing any class that might trigger accessing it.