Navigation
API > API/Runtime > API/Runtime/InteractiveToolsFramework
Inheritance Hierarchy
- FChange
- FCommandChange
- FToolCommandChange
- TWrappedToolCommandChange
References
| Module | InteractiveToolsFramework |
| Header | /Engine/Source/Runtime/InteractiveToolsFramework/Public/InteractiveToolChange.h |
| Include | #include "InteractiveToolChange.h" |
Syntax
template<typename ChangeType>
class TWrappedToolCommandChange : public FToolCommandChange
Remarks
Holds another Change and forwards Apply/Revert to it, with calls to Before/After lambas, allowing client classes to respond to a change without having to intercept it explicitly. (Be very careful with these lambdas!)
Variables
| Type | Name | Description | |
|---|---|---|---|
| TUniqueFunction< void(bool bRevert)> | AfterModify | ||
| TUniqueFunction< void(bool bRevert)> | BeforeModify | ||
| TUniquePtr< ChangeType > | WrappedChange |