Navigation
API > API/Plugins > API/Plugins/LiveLink > API/Plugins/LiveLink/PreProcessor
Inheritance Hierarchy
- UObjectBase
- UObjectBaseUtility
- UObject
- ULiveLinkFramePreProcessor
- ULiveLinkTransformDeadbandPreProcessor
References
| Module | LiveLink |
| Header | /Engine/Plugins/Animation/LiveLink/Source/LiveLink/Public/PreProcessor/LiveLinkDeadbandPreProcessor.h |
| Include | #include "PreProcessor/LiveLinkDeadbandPreProcessor.h" |
Syntax
UCLASS (Meta=(DisplayName="Transform Deadband"))
class ULiveLinkTransformDeadbandPreProcessor : public ULiveLinkFramePreProcessor
Remarks
Implements a deadband filter that gets applied to the transform, with independent thresholds for rotation and translation.
Variables
| Type | Name | Description | |
|---|---|---|---|
| bool | bEnableDeadband | If false, transform is left untouched | |
| TSharedPtr< FLiveLinkTransformDeadbandPreProcessorWorker, ESPMode::ThreadSafe > | Instance | Instance of the worker object | |
| float | RotationDeadbandInDegrees | Rotation is updated only if the change is larger than this threshold | |
| float | TranslationDeadband | Translation is updated only if the change is larger than this threshold |
Overridden from ULiveLinkFramePreProcessor
| Type | Name | Description | |
|---|---|---|---|
| ULiveLinkFramePreProcessor::FWorkerSharedPtr | FetchWorker () |
||
| TSubclassOf< ULiveLinkRole > | GetRole () |
Overridden from UObject
| Type | Name | Description | |
|---|---|---|---|
| void | PostEditChangeChainProperty
(
FPropertyChangedChainEvent& PropertyChangedEvent |
This alternate version of PostEditChange is called when properties inside structs are modified. |
Classes
| Type | Name | Description | |
|---|---|---|---|
| FLiveLinkTransformDeadbandPreProcessorWorker |