Navigation
API > API/Runtime > API/Runtime/Engine
| |
|
| Name |
EConstraintTransformComponentFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Engine/Classes/PhysicsEngine/ConstraintInstance.h |
| Include Path |
#include "PhysicsEngine/ConstraintInstance.h" |
Syntax
enum EConstraintTransformComponentFlags
{
None = 0,
ChildPosition = 1 << 0,
ChildRotation = 1 << 1,
ParentPosition = 1 << 2,
ParentRotation = 1 << 3,
AllChild = ChildPosition | ChildRotation,
AllParent = ParentPosition | ParentRotation,
AllPosition = ChildPosition | ParentPosition,
AllRotation = ChildRotation | ParentRotation,
All = AllChild | AllParent,
}
Values
| Name |
Remarks |
| None |
|
| ChildPosition |
|
| ChildRotation |
|
| ParentPosition |
|
| ParentRotation |
|
| AllChild |
|
| AllParent |
|
| AllPosition |
|
| AllRotation |
|
| All |
|