AbilitySystem.Ability.Grant
AbilitySystem.Ability.Grant
#Overview
name: AbilitySystem.Ability.Grant
This variable is created as a Console Variable (cvar).
- type: Cmd
- help: <ClassName/AssetName>. Grants an Ability to the Player. Granting only happens on the Authority, so this command will be sent to the Server.
It is referenced in 1 C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Plugins/Runtime/GameplayAbilities/Source/GameplayAbilities/Private/AbilitySystemCheatManagerExtension.cpp:558
Scope: file
Source code excerpt:
//
FAutoConsoleCommand DebugAbilitySystemAbilityGrantCommand(TEXT("AbilitySystem.Ability.Grant"), TEXT("<ClassName/AssetName>. Grants an Ability to the Player. Granting only happens on the Authority, so this command will be sent to the Server."),
	FConsoleCommandWithWorldArgsAndOutputDeviceDelegate::CreateLambda([](const TArray<FString>& Args, UWorld* World, FOutputDevice& OutputDevice)
		{
			if (Args.Num() < 1)
			{
				OutputDevice.Logf(TEXT("Missing Arguments: <ClassName/AssetName>"));
				OutputDevice.Logf(TEXT(" ClassName: If supplied, the ClassName of the loaded GameplayAbility to Grant."));