Navigation
API > API/Editor > API/Editor/AnimationModifiers > API/Editor/AnimationModifiers/FApplyModifiersScope
| |
|
| Name |
ESuppressionMode |
| Type |
enum |
| Header File |
/Engine/Source/Editor/AnimationModifiers/Public/AnimationModifier.h |
| Include Path |
#include "AnimationModifier.h" |
Syntax
enum ESuppressionMode
{
NoChange,
SuppressWarningAndError,
SuppressWarning,
ShowDialog,
ForceDialog,
RevertAtWarning,
}
Values
| Name |
Remarks |
| NoChange |
Do not change the error handling mode on this scope Use the mode set by parent scope or default (ShowDialog) |
| SuppressWarningAndError |
Suppress error dialogs Suppress warnings dialogs, always apply modifiers No user interaction required |
| SuppressWarning |
Show error dialogs Suppress warnings dialogs, always apply modifiers |
| ShowDialog |
Show warning and error dialogs for first encounter Error dialog for each modifier class will only be showed once |
| ForceDialog |
Always show the error or warning dialog Default behavior when no scope was open |
| RevertAtWarning |
Suppress error dialogs Suppress warnings dialogs, always revert modifiers No user interaction required |