Appearance
Installation Guide
To utilize Pulse Quest, you need to ensure the plugin is correctly installed in your Unreal Engine project and that the required native plugins are enabled.
1. Enable Required Plugins
Pulse Quest is built natively on top of the StateTree framework. Before using the plugin, you must enable these built-in engine plugins:
- Open your project in Unreal Editor.
- Go to Edit -> Plugins.
- Search for StateTree and enable the
StateTreeplugin. - Search for Gameplay StateTree and enable it as well.
- Restart the editor.
2. Plugin Setup
Depending on whether you're using Blueprints or C++, follow the general Installation Guide.
If you are writing C++ code to interface with Pulse Quest, add the module to your MyProject.Build.cs:
csharp
PublicDependencyModuleNames.AddRange(new string[] {
"Core",
"CoreUObject",
"Engine",
"PulseQuest" // Add this module
});3. Verify Installation
To verify that the plugin is working:
- Right-click anywhere in your Content Browser.
- Navigate to Miscellaneous -> Data Asset.
- Search for
PulseQuestin the class list. IfUPulseQuestis available, the installation was successful.
