Navigation
API > API/Runtime > API/Runtime/InteractiveToolsFramework > API/Runtime/InteractiveToolsFramework/IToolsContextTransactionsAPI
References
| Module | InteractiveToolsFramework |
| Header | /Engine/Source/Runtime/InteractiveToolsFramework/Public/ToolContextInterfaces.h |
| Include | #include "ToolContextInterfaces.h" |
void AppendChange
(
UObject * TargetObject,
TUniquePtr< FToolCommandChange > Change,
const FText & Description
)
Remarks
Insert an FChange into the transaction history in the current Context. It is safe but not necessary to call this between Begin/EndUndoTransaction; the FChange will be automatically inserted into a Transaction.
Parameters
| Name | Description |
|---|---|
| TargetObject | The UObject this Change is applied to |
| Change | The Change implementation |
| Description | text description of the transaction that could be shown to user |