Navigation
API > API/Plugins > API/Plugins/ControlRigEditor > API/Plugins/ControlRigEditor/UControlRigSequencerEditorLibrar-
Description
Delete the Control Rig Space Key for the Control at the specified time. This will delete any attached Control Rig keys at this time and will perform any needed compensation to the new space.
| Name | DeleteControlRigSpace |
| Type | function |
| Header File | /Engine/Plugins/Animation/ControlRig/Source/ControlRigEditor/Public/ControlRigSequencerEditorLibrary.h |
| Include Path | #include "ControlRigSequencerEditorLibrary.h" |
| Source | /Engine/Plugins/Animation/ControlRig/Source/ControlRigEditor/Private/ControlRigSequencerEditorLibrary.cpp |
UFUNCTION (BlueprintCallable, Category="Editor Scripting | Sequencer Tools | Control Rig")
static bool DeleteControlRigSpace
(
ULevelSequence * InSequence,
UControlRig * InControlRig,
FName InControlName,
FFrameNumber InTime,
EMovieSceneTimeUnit TimeUnit
)
Will return false if function fails, for example if there is no key at this time it will fail.
Parameters
| Name | Remarks |
|---|---|
| InSequence | Sequence to set the space |
| InControlRig | ControlRig with the Control |
| InControlName | The name of the Control |
| InTime | Time to delete the space. |
| TimeUnit | Unit for the InTime, either in display rate or tick resolution |