Navigation
API > API/Runtime > API/Runtime/Engine
The display mode of editable values on an animation node.
| Name | EPinHidingMode::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AnimNodeBase.h |
| Include Path | #include "Animation/AnimNodeBase.h" |
Syntax
namespace EPinHidingMode
{
enum Type
{
NeverAsPin,
PinHiddenByDefault,
PinShownByDefault,
AlwaysAsPin,
}
}
Values
| Name | Remarks |
|---|---|
| NeverAsPin | Never show this property as a pin, it is only editable in the details panel (default for everything but FPoseLink properties). |
| PinHiddenByDefault | Hide this property by default, but allow the user to expose it as a pin via the details panel. |
| PinShownByDefault | Show this property as a pin by default, but allow the user to hide it via the details panel. |
| AlwaysAsPin | Always show this property as a pin; it never makes sense to edit it in the details panel (default for FPoseLink properties). |