Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObject
Description
Create a component or subobject only to be used with the editor. They will be stripped out in packaged builds.
| Name | CreateEditorOnlyDefaultSubobject |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Object.h |
| Include Path | #include "UObject/Object.h" |
template<class TReturnType>
TReturnType * CreateEditorOnlyDefaultSubobject
(
FName SubobjectName,
bool bTransient
)
Parameters
| Name | Remarks |
|---|---|
| TReturnType | Class of return type, all overrides must be of this type |
| SubobjectName | Name of the new component |
| bTransient | True if the component is being assigned to a transient property. This does not make the component itself transient, but does stop it from inheriting parent defaults |