Navigation
API > API/Plugins > API/Plugins/TakesCore > API/Plugins/TakesCore/UTakeRecorderSource
Description
This is called on all sources after recording is stopped. By returning the same list of additional sources as provided in PreRecording the source can clean up any additional temporary sources that were created by this recording. These additional temporary sources will be properly shut down so they have a chance to store their data before being removed from the list.
Will not be called if this recording source is not enabled.
| Name | PostRecording |
| Type | function |
| Header File | /Engine/Plugins/VirtualProduction/Takes/Source/TakesCore/Public/TakeRecorderSource.h |
| Include Path | #include "TakeRecorderSource.h" |
virtual TArray < UTakeRecorderSource * > PostRecording
(
class ULevelSequence * InSequence,
class ULevelSequence * InRootSequence,
const bool bCancelled
)
An array of take recorder sources to be removed. Likely to match the same list as PreRecording. Can be an empty list if no additional sources are required by this source.