Go to the source code of this file.
|
| ENGINE_API void | ExportProperties (const class FExportObjectInnerContext *Context, FOutputDevice &Out, UClass *ObjectClass, uint8 *Object, int32 Indent, UClass *DiffClass, uint8 *Diff, UObject *Parent, uint32 PortFlags=0, UObject *ExportRootScope=NULL) |
| |
| ENGINE_API void | DumpComponents (UObject *Object) |
| |
| ENGINE_API FString | DumpComponentsToString (UObject *Object) |
| |
| ENGINE_API void | DumpObject (const TCHAR *Label, UObject *Object) |
| |
| ENGINE_API FString | DumpObjectToString (UObject *Object) |
| |
◆ DumpComponents()
Debug spew for components
- Parameters
-
| Object | object to dump component spew for |
◆ DumpComponentsToString()
Debug spew for object's components, returned as an FString.
◆ DumpObject()
Debug spew for an object
- Parameters
-
| Label | header line for spew |
| Object | object to dump component spew for |
◆ DumpObjectToString()
Debug spew for an object, returned as an FString.
◆ ExportProperties()
Exports the property values for the specified object as text to the output device.
- Parameters
-
| Context | Context from which the set of 'inner' objects is extracted. If NULL, an object iterator will be used. |
| Out | the output device to send the exported text to |
| ObjectClass | the class of the object to dump properties for |
| Object | the address of the object to dump properties for |
| Indent | number of spaces to prepend to each line of output |
| DiffClass | the class to use for comparing property values when delta export is desired. |
| Diff | the address of the object to use for determining whether a property value should be exported. If the value in Object matches the corresponding value in Diff, it is not exported. Specify NULL to export all properties. |
| Parent | the UObject corresponding to Object |
| PortFlags | flags used for modifying the output and/or behavior of the export |
| ExportRootScope | The scope to create relative paths from, if the PPF_ExportsNotFullyQualified flag is passed in. If NULL, the package containing the object will be used instead. |