Navigation
BlueprintAPI > BlueprintAPI/Experimental > BlueprintAPI/Experimental/Json
! EXPERIMENTAL !
Writes the provided objects to a string output, using the JsonObjectGraph format. Reachable nested objects will be included automatically. Objects not within a root should be included in RootObjects if they want to be deeply represented in the result string
Examples of invocation from python: Print an object: print( unreal.JsonObjectGraphFunctionLibrary.stringify([object], tuple()) ) Print a list objects: print( unreal.JsonObjectGraphFunctionLibrary.stringify(objects, tuple()) ) Print an object's entire package: print( unreal.JsonObjectGraphFunctionLibrary.stringify([unreal.EditorAssetLibrary.get_package_for_object(object)], tuple()) )
Target is Json Object Graph Function Library
Inputs
| Type | Name | Description |
|---|---|---|
| exec | In | |
| object | Root Objects | The objects to write at the root level |
| struct | Options | Options controlling the written format |
Outputs
| Type | Name | Description |
|---|---|---|
| exec | Out | |
| string | Result String | The objects stringified |