Navigation
API > API/Plugins > API/Plugins/CustomizableObject > API/Plugins/CustomizableObject/MuCO
References
| Module | CustomizableObject |
| Header | /Engine/Plugins/Experimental/Mutable/Source/CustomizableObject/Classes/MuCO/CustomizableObjectInstance.h |
| Include | #include "MuCO/CustomizableObjectInstance.h" |
Syntax
class FBeginUpdateDelegate
Remarks
When creating new delegates use the following conventions:
- All delegates must be multicast.
- If the delegate is exposed to the API create both, dynamic and native versions (non-dynamic).
- Dynamic delegates should not be transient. Use the native version if you do not want it to be saved.
- Native delegates names should end with "NativeDelegate".
- Dynamic delegates broadcast before native delegates. Broadcast at the end of an Instance update request (e.g., before returning from UpdateSkeletalMeshAsync). Notice that Mutable internally can also request an Instance update.