Navigation
API > API/Editor > API/Editor/CurveEditor > API/Editor/CurveEditor/FCurveEditorSelection
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Replace
(
const TMap< FCurveModelID, FKeyHandleSet >& InCurveToSelectedKeys |
Replaces the current key selection in one batched update using prebuilt per-curve key-handle sets. | CurveEditorSelection.h | |
void Replace
(
const TMap< FCurveModelID, TArray< FKeyHandle > >& InCurveToSelectedKeys, |
Replaces the current key selection in one batched update using raw per-curve key-handle arrays. | CurveEditorSelection.h |
Replace(const TMap< FCurveModelID, FKeyHandleSet > &)
Description
Replaces the current key selection in one batched update using prebuilt per-curve key-handle sets. Curves that are invalid or read-only are skipped using the same validation rules as Add(...).
| Name | Replace |
| Type | function |
| Header File | /Engine/Source/Editor/CurveEditor/Public/CurveEditorSelection.h |
| Include Path | #include "CurveEditorSelection.h" |
| Source | /Engine/Source/Editor/CurveEditor/Private/CurveEditorSelection.cpp |
void Replace
(
const TMap < FCurveModelID , FKeyHandleSet > & InCurveToSelectedKeys
)
Parameters
| Name | Remarks |
|---|---|
| InCurveToSelectedKeys | Map of curve IDs to the exact selected keys to apply for each curve. |
Replace(const TMap< FCurveModelID, TArray< FKeyHandle > > &, const ECurvePointType)
Description
Replaces the current key selection in one batched update using raw per-curve key-handle arrays. Curves that are invalid or read-only are skipped using the same validation rules as Add(...). All keys supplied for a given curve are associated with InPointType.
| Name | Replace |
| Type | function |
| Header File | /Engine/Source/Editor/CurveEditor/Public/CurveEditorSelection.h |
| Include Path | #include "CurveEditorSelection.h" |
| Source | /Engine/Source/Editor/CurveEditor/Private/CurveEditorSelection.cpp |
void Replace
(
const TMap < FCurveModelID , TArray < FKeyHandle > > & InCurveToSelectedKeys,
const ECurvePointType InPointType
)
Parameters
| Name | Remarks |
|---|---|
| InCurveToSelectedKeys | Map of curve IDs to the selected key handles to apply for each curve. |
| InPointType | Point type to assign to every supplied key handle. |