Navigation
API > API/Plugins > API/Plugins/MLDeformerFramework > API/Plugins/MLDeformerFramework/UMLDeformerModelInstance
Description
Executed at the end of the tick. This is always executed when Tick is called, also if the model weight is 0 etc. When the model weight is tiny or setting the inputs failed, the Execute function wasn't called during Tick. The parameter that is passed to this method will let you know whether Execute got called or not.
Derived Overrides
| Name | PostTick |
| Type | function |
| Header File | /Engine/Plugins/Animation/MLDeformer/MLDeformerFramework/Source/MLDeformerFramework/Public/MLDeformerModelInstance.h |
| Include Path | #include "MLDeformerModelInstance.h" |
virtual void PostTick
(
bool bExecuteCalled
)
Parameters
| Name | Remarks |
|---|---|
| bExecuteCalled | This is true when we called Execute, otherwise it is false. |