Documentation

__ Modular Abilities

Documentation

__ Modular Abilities

What Is the Ability System

The ability system allows transitions between different gameplay abilities, enabling you to easily define and manage the behavior of players, NPCs, or any actors.
With this system, you can create complex interactions that adapt to various conditions without getting tangled up in the logic.

Object based

The Ability System provides a modular and scalable way to manage abilities of your pawns. It ensures transitions between different states such as being On Ground, Jumping or Falling. Designed with flexibility in mind, the system is highly modular, allowing new abilities to be integrated seamlessly without disrupting existing functionality. By centralizing ability logic, it keeps the codebase cleaner, more efficient, and easier to extend. Thus, each ability is represented by an object, and its logic is contained within that object.

Allowed on actors

The Ability System can also be applied to non-pawn actors, expanding its versatility. For example, it can be used to manage the state of a gun. In this case, the player can only shoot when the gun is in the "Idle" ability (since the input is bound to this ability and not to others). When the player shoots, the gun transitions to the "Shoot" ability, and a timer is triggered. Once the timer expires, the gun automatically returns to the "Idle" state, ready for the next action.

How to use

Abilities manager component

First, add the Abilities Manager component to your actor.

💡You can also create your own component by extending the Base Abilities Manager.

Change Ability

Then you can change the actor's current ability like this, provided the ability is accessible. To override accessibility checks and force the ability change, enable Force Change.

💡Learn how to create an ability here.

Useful dispatchers

Some dispatchers are availible in abilities manager component.

 

Initial ability

In the component details, choose the default ability this actor will have.

 

Network replication

⚠️To replicate this system on a player pawn with inputs, the initial ability must be selected during possession to ensure the inputs are correctly activated within the ability.

Ability

1 - Ability creation & Events

1.1 - Create an Ability

Right click in content browser, select Modular Abilities -> Ability.

1.2 - Select ability class

Choose your base class for this ability. MA_Ability is the mother class of all abilities, so if you don't need inheritance between your capabilities, you should use it.

💡Only abilities with "bIsBaseAbilityClass" checked are listed. Learn more.

 

1.3 - Class defaults

  • Tick: If checked, Event Tick will trigger every specified number of seconds or every tick if set to ≤ 0.
  • Replicates: If checked, the ability will be network replicated, allowing RPC calls and ensuring that replicated variables synchronize across the network.
  • Auto Enable Input: If checked, inputs will be automatically enabled when the ability is entered and disabled when the ability is exited (only if the ability's owner has a controller). This should be enabled for player abilities and disabled for NPCs or world actors.

1.4 Is Accessible

You can override the IsAccessible function to implement your own accessibility logic. For example, for a sprint ability, you could use:

bool UYourAbility::IsAccessible() const override
{
    return Stamina > 0;
}

1.5 - Base events

  • Event Initialize: Triggers when the ability is created (not when entered), making it useful for efficiently setting references to casted objects, for example.
  • Event Destroyed: Called when the owner actor is destroyed (the owner of the Abilities Manager Component). If you have any dispatcher bindings to unbind, this is the appropriate place to do so!
  • Event Tick: Triggers every specified number of seconds set in the Tick Interval (secs) or every tick if set to ≤ 0.

1.6 - Ability change events

  • Event Enter Ability: Triggers when the ability is entered (when ChangeAbility is called with this ability selected and if IsAccessible returns true).
  • Event Exit Ability: Called when the ability is exited (when ChangeAbility is called to switch to another accessible ability).
  • Event Failed Access Ability: Triggers when someone tries to change to this ability, but the ability is not accessible.

2 - How to create a quest

2.1 - Change Ability

Change Ability is the same as the Change Ability in the Abilities Manager Component. It automatically calls the Change Ability function of its manager. Learn more.

2.2 - Getters

  • Get Manager: Returns the Abilities Manager Component which created and owns this ability.
  • Get Owner Controller: Returns the controller of the owner actor of this ability.
  • Get Owner Player Controller: Same as GetOwnerController, but returns the optimized casted Player Controller version.
  • Get Owner: Returns the owner actor of this ability (the actor that owns the Abilities Manager Component which created and owns this ability).
  • Get Owner Pawn: Same as GetOwner, but returns the optimized casted Pawn version.
  • Get Owner Character: Same as GetOwner, but returns the optimized casted Character version.

3 - Include Ability in Abilities Class Picker

In the Class Defaults of an ability, if "Is Base Ability Class" is checked, this ability will be included as a possible parent class for creating a new ability. 

Abilities Manager

Create an Abilies Manager

Right click in content browser, select Modular Abilities -> Abilities Manager.


 Getter

Returns the currently active ability.

Events

  • Event Ability Entered: Triggered each time an ability is entered, providing the entered ability as a parameter.
  • Event Ability Exited: Triggered each time an ability is exited, providing the exited ability as a parameter.
  • Event Ability Access Failed: Triggered each time an ability fails to be accessed, providing the inaccessible ability as a parameter.

K2Nodes Utilities

Switch on Ability

To simplify your logic implementation, this plugin provides a new switch based on ability classes and a reference to an ability.

Switch on Ability Class

This plugin also provides a switch that works directly with an ability class, rather than requiring a reference to an ability object.