Backend Provider: Beamable
The Beamable Backend Provider gives you the option to interact with the Venly API using Beamable's Microservices.
To use this provider you'll have to:
- Install the Beamable SDK for Unreal Engine 5
- Install the 'VenlyBeamable' Plugin
VenlyBeamable Plugin
The 'VenlyBeamable' Plugin is part of the VenlySDK_UE_Beamable sample project on GitHub (VenlySDK_UE_Beamable/Plugins/VenlyBeamable). This module acts as a communication layer between Beamable's and Venly's SDK.
- Copy the VenlyBeamable plugin into the plugin folder of your project.
- For Code-Projects, make sure to add the module to your game's PublicDependencyModuleNames inside your *.build.cs file.
PublicDependencyModuleNames.AddRange(new string[] { "Venly", "VenlyBeamable" });
Now we can create and configure our microservice.
Updated 8 months ago