Manager
Overview
UCSkillManager is a UGameInstanceSubsystem that manages skill resolution and execution. It implements ICSkillMaker and registers itself as a singleton (CNAME_Singleton_SkillManager) on initialization. Skill implementation instances are cached in a TMap<FString, UCAbstractSkill*>.
Functions
| Name | Description |
|---|---|
| getInstance | Static helper returning the UCSkillManager from a given actor’s game instance |
| retrieveSkill | Looks up a FCSkillDataStruct row by name from the coordinator skill DataTable |
| consumeSkill | Resolves and executes a skill by name on a source actor (BlueprintCallable) |
SkillUtility
Static utility class providing global skill consumption without direct manager access.
| Name | Description |
|---|---|
| consumeSkill | Retrieves the ICSkillMaker singleton and delegates consumeSkill |