RealDocs

UKismetSystemLibrary::BreakSoftClassPath

function Engine Blueprint Since unknown
#include "Kismet/KismetSystemLibrary.h"
Access: public Specifiers: staticBlueprintPureBlueprintThreadSafe

Description

Extracts the path string out of an FSoftClassPath. This is the Blueprint "Break SoftClassPath" node.

Caveats & Gotchas

  • Takes the struct by value rather than by const reference, unlike most of the other Break functions in this file — irrelevant in Blueprint but worth knowing if calling from C++.
  • Returns an empty string for a default-constructed (unset) path rather than failing.

Signature

static ENGINE_API void BreakSoftClassPath(FSoftClassPath InSoftClassPath, FString& PathString)

Parameters

Name Type Description Default
InSoftClassPath FSoftClassPath The soft class path to decompose.
PathString FString& Output parameter receiving the path as a string.

Return Type

void

Example

Read the underlying path string C++
FString PathString;
UKismetSystemLibrary::BreakSoftClassPath(MySoftClassPath, PathString);

Version History

Introduced in: unknown

Version Status Notes
5.6 stable

Feedback

Was this helpful?

Suggest an edit

Select a field above to begin editing.