Navigation
API > API/Plugins > API/Plugins/ControlRig > API/Plugins/ControlRig/URigHierarchy
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool IsParentedTo
(
FRigElementKey InChild, |
Returns true if an element is parented to another element | Rigs/RigHierarchy.h |
|
bool IsParentedTo
(
int32 InChildIndex, |
Returns true if an element is parented to another element | Rigs/RigHierarchy.h | |
bool IsParentedTo
(
FRigBaseElement* InChild, |
Returns true if an element is parented to another element | Rigs/RigHierarchy.h |
IsParentedTo(FRigElementKey, FRigElementKey)
Description
Returns true if an element is parented to another element
| Name | IsParentedTo |
| Type | function |
| Header File | /Engine/Plugins/Animation/ControlRig/Source/ControlRig/Public/Rigs/RigHierarchy.h |
| Include Path | #include "Rigs/RigHierarchy.h" |
UFUNCTION (BlueprintCallable, Category=URigHierarchy)
bool IsParentedTo
(
FRigElementKey InChild,
FRigElementKey InParent
) const
True if the given parent and given child have a parent-child relationship
Parameters
| Name | Remarks |
|---|---|
| InChild | The key of the child element to check for a parent |
| InParent | The key of the parent element to check for |
IsParentedTo(int32, int32, const IRigDependenciesProvider &, FRigHierarchyDependencyChain *)
Description
Returns true if an element is parented to another element
| Name | IsParentedTo |
| Type | function |
| Header File | /Engine/Plugins/Animation/ControlRig/Source/ControlRig/Public/Rigs/RigHierarchy.h |
| Include Path | #include "Rigs/RigHierarchy.h" |
bool IsParentedTo
(
int32 InChildIndex,
int32 InParentIndex,
const IRigDependenciesProvider & InDependencyProvider,
FRigHierarchyDependencyChain * OutDependencyChain
) const
True if the given parent and given child have a parent-child relationship
Parameters
| Name | Remarks |
|---|---|
| InChildIndex | The index of the child element to check for a parent |
| InParentIndex | The index of the parent element to check for |
| InDependencyProvider | An additional object providing dependencies to respect |
| OutDependencyChain | An optional output error message indicating the parent cycle |
IsParentedTo(FRigBaseElement , FRigBaseElement , const IRigDependenciesProvider &, FRigHierarchyDependencyChain *)
Description
Returns true if an element is parented to another element
| Name | IsParentedTo |
| Type | function |
| Header File | /Engine/Plugins/Animation/ControlRig/Source/ControlRig/Public/Rigs/RigHierarchy.h |
| Include Path | #include "Rigs/RigHierarchy.h" |
| Source | /Engine/Plugins/Animation/ControlRig/Source/ControlRig/Private/Rigs/RigHierarchy.cpp |
bool IsParentedTo
(
FRigBaseElement * InChild,
FRigBaseElement * InParent,
const IRigDependenciesProvider & InDependencyProvider,
FRigHierarchyDependencyChain * OutDependencyChain
) const
True if the given parent and given child have a parent-child relationship
Parameters
| Name | Remarks |
|---|---|
| InChild | The child element to check for a parent |
| InParent | The parent element to check for |
| InDependencyProvider | An additional object providing dependencies to respect |
| OutDependencyChain | An optional output structural chain providing insight into the chain causing the dependency cycle |