Skip to main content
Version: v1

Setup

Setting up your Unreal Engine project to use the Immutable Marketplace module is easy.

All you need to do is install the Unreal Engine plugin and enable the Marketplace module in your project. Follow the steps below to get started.
Unreal MarketplaceUnreal Marketplace
💡Who is this for?
Developers who want to build an in-game marketplace in Unreal.

Overview

To make using the Immutable Marketplace in your Unreal Engine project as easy as possible, we have added the marketplace functionality to Immutable's Unreal Plugin. To use these features in your project, you need to install the plugin and enable the Marketplace module in your project.

Marketplace module

💡Supported Platforms and Versions
Refer to this page for the supported platforms and Unreal Engine versions.

1. Install Unreal Engine Plugin

The marketplace module is available here as part of the Immutable Unreal Engine plugin. To install the plugin, follow the installation procedure.

2. Enable Marketplace Module

In order to start using the orderbook module, you need to enable the module in your unreal project. To do so, add the following line to your project's .Build.cs file. The below example shows how to add the module as public dependency in your project.

PublicDependencyModuleNames.AddRange(new string[] 
{
...
"ImmutableMarketplace",
...
});

Related content