Navigation
API > API/Editor > API/Editor/UnrealEd > API/Editor/UnrealEd/UFactory
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual UObject * FactoryCreateText
(
UClass* InClass, |
Create a new object by importing it from a text buffer. | Factories/Factory.h | |
virtual UObject * FactoryCreateText
(
UClass* InClass, |
Create a new object by importing it from a text buffer. | Factories/Factory.h |
FactoryCreateText(UClass , UObject , FName, EObjectFlags, UObject , const TCHAR , const TCHAR &, const TCHAR , FFeedbackContext *)
Description
Create a new object by importing it from a text buffer.
| Name | FactoryCreateText |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Classes/Factories/Factory.h |
| Include Path | #include "Factories/Factory.h" |
virtual UObject * FactoryCreateText
(
UClass * InClass,
UObject * InParent,
FName InName,
EObjectFlags Flags,
UObject * Context,
const TCHAR * Type,
const TCHAR *& Buffer,
const TCHAR * BufferEnd,
FFeedbackContext * Warn
)
The new object.
Parameters
| Name | Remarks |
|---|---|
| InClass | |
| InParent | |
| InName | |
| Flags | |
| Context | |
| Type | (must not be nullptr, i.e. TEXT("TGA")) |
| Buffer | |
| BufferEnd | |
| Warn |
FactoryCreateText(UClass , UObject , FName, EObjectFlags, UObject , const TCHAR , const TCHAR &, const TCHAR , FFeedbackContext *, bool &)
Description
Create a new object by importing it from a text buffer.
| Name | FactoryCreateText |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Classes/Factories/Factory.h |
| Include Path | #include "Factories/Factory.h" |
virtual UObject * FactoryCreateText
(
UClass * InClass,
UObject * InParent,
FName InName,
EObjectFlags Flags,
UObject * Context,
const TCHAR * Type,
const TCHAR *& Buffer,
const TCHAR * BufferEnd,
FFeedbackContext * Warn,
bool & bOutOperationCanceled
)
The new object.
Parameters
| Name | Remarks |
|---|---|
| InClass | |
| InParent | |
| InName | |
| Flags | |
| Context | |
| Type | (must not be nullptr, i.e. TEXT("TGA")) |
| Buffer | |
| BufferEnd | |
| Warn | |
| bOutOperationCanceled | Will indicate whether the user canceled the import. |