Manager
Overview
UCQuestManager is a UGameInstanceSubsystem that manages quest creation, activation, and step processing. It implements ICQuestMaker and ICPipeline, and registers itself as a singleton (CNAME_Singleton_QuestManager) on initialization.
Functions
| Name | Description |
|---|---|
| getInstance | Static helper returning the UCQuestManager from a given actor’s game instance |
| createQuest | Stores a quest map, assigns quest/step IDs, and sets the first step as active (BlueprintCallable) |
| clearAll | Empties the entire quest map (BlueprintCallable) |
| activateAnyQuest | Evaluates condition delegates on all UNSET quests and activates those that pass |
| proceedWithActorQuestAction | Processes an actor-based quest action for all active quests matching the initiator |
| proceedWithRoomQuestAction | Processes a room-based quest action for all active quests matching the initiator |
QuestUtility
Static utility class providing global quest action dispatch without direct manager access. Uses ICQuestMaker singleton lookup.
| Name | Description |
|---|---|
| proceedWithQuestAction (actor) | Retrieves the ICQuestMaker singleton and delegates proceedWithActorQuestAction |
| proceedWithQuestAction (room) | Retrieves the ICQuestMaker singleton and delegates proceedWithRoomQuestAction |