Navigation
API > API/Editor > API/Editor/UnrealEd
Parameters for the ImportCreateObjectStep and ImportObjectPropertiesStep. Used for multi steps import.
| Name | FMultiStepsImportObjectParams |
| Type | struct |
| Header File | /Engine/Source/Editor/UnrealEd/Public/Editor.h |
| Include Path | #include "Editor.h" |
Syntax
struct FMultiStepsImportObjectParams
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| bShouldCallEditChange | bool | True if we should call PreEditChange/PostEditChange on the object as it's imported. | Editor.h | |
| Depth | int32 | Current nesting level | Editor.h | |
| DestData | uint8 * | The location to import the property values to | Editor.h | |
| InInstanceGraph | FObjectInstancingGraph * | Contains the mappings of instanced objects and components to their templates; used when recursively calling ImportObjectProperties; generally not necessary to specify a value when calling this function from other code | Editor.h | |
| LineNumber | int32 | Used when importing defaults during script compilation for tracking which line we're currently for the purposes of printing compile errors | Editor.h | |
| ObjectRemapper | TMap< FSoftObjectPath, UObject * > * | Provides a mapping from an exported path to a new instance to which it should be remapped Imported object will be added to this map when possible during the create objects step. | Editor.h | |
| ObjectStruct | UStruct * | The struct for the data we're importing | Editor.h | |
| PropertiesToSkip | TSet< FProperty * > * | Tell what properties shouldn't be imported when importing the properties | Editor.h | |
| SourceText | FStringView | Text buffer containing the values that should be parsed and imported | Editor.h | |
| SubobjectOuter | UObject * | The object corresponding to DestData; this is the object that will used as the outer when creating subobjects from definitions contained in SourceText | Editor.h | |
| SubobjectRoot | UObject * | The original object that ImportObjectProperties was called for. | Editor.h | |
| Warn | FFeedbackContext * | Output device to use for log messages | Editor.h |