Getting Started with GameFuse Blueprints¶
The first step of integrating GameFuse with your project is to make an account.
After creating your account, add your first game and note the ID and API Token.
With this setup, you can now connect via your game client.
Installation¶
- Download the Plugin from GitHub or the Unreal Store
- Unzip the code
- Add it to your UnrealEngine project in the Plugins folder
- Enable the plugin inside the engine
Quick Start Example¶
Here's a basic example of how to set up GameFuse in your game using Blueprints:
Blueprint Example
Key Changes in V2.9¶
GameFuse V2.9 introduced significant architectural changes:
- Subsystem Architecture: All GameFuse functionality is now provided through Unreal Engine subsystems
- Callback Events: Replaced latent nodes with callback events for better performance
- Struct-Based Data: Replaced UObjects with structs for better performance and memory usage
- Request Tracking: All API calls return a unique request ID for tracking
For detailed migration information, see the V2.9 Migration Guide.
Example Project¶
Click on the following link to see an example of GameFuse implemented in Unreal 5.4.4:
Next Steps¶
- Sign Up Users - Learn how to create user accounts
- Sign In Users - Learn how to authenticate users
- Class Methods - Reference for all available methods
- Callback Reference - Learn about the callback system