AbilitySystem.Effect.Remove
AbilitySystem.Effect.Remove
#Overview
name: AbilitySystem.Effect.Remove
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
[-Server] <Handle/Name>. Remove a Gameplay Effect that is currently active on the Player
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:625
Scope: file
Source code excerpt:
}), ECVF_Cheat);
FAutoConsoleCommand DebugAbilitySystemEffectRemoveCommand(TEXT("AbilitySystem.Effect.Remove"), TEXT("[-Server] <Handle/Name>. Remove a Gameplay Effect that is currently active on the Player"),
FConsoleCommandWithWorldArgsAndOutputDeviceDelegate::CreateLambda([](const TArray<FString>& Args, UWorld* World, FOutputDevice& OutputDevice)
{
if (Args.Num() < 1)
{
OutputDevice.Logf(TEXT("Missing Arguments: [-Server] <Handle or Name>"));
OutputDevice.Logf(TEXT(" -Server: Indicates this command should be sent to the server, rather than executed locally."));