Class UUxtInternalFunctionLibrary
Library of utility intenral functions for UX Tools.
Inheritance
System::Object
UBlueprintFunctionLibrary
UUxtInternalFunctionLibrary
Namespace:
Assembly: .dll
Syntax
public: class UUxtInternalFunctionLibrary
Methods
|
Improve this Doc
View Source
FStringToHexCodePoint(const FString &Input, FString &Output)
Converts a UTF-16 FString into the corresponding unicode code point as hex representation. Returns true when the conversion is successful.
Declaration
public: static bool FStringToHexCodePoint(const FString &Input, FString &Output)
Parameters
Type |
Name |
Description |
const FString & |
Input |
|
FString & |
Output |
|
Returns
|
Improve this Doc
View Source
GetFontCharacterData(const UFont *Font, TArray<FUxtFontCharacter> &FontCharacters)
Builds an array of FUxtFontCharacters for each character present in a UFont.
Declaration
public: static bool GetFontCharacterData(const UFont *Font, TArray<FUxtFontCharacter> &FontCharacters)
Parameters
Returns
|
Improve this Doc
View Source
HexCodePointToFString(const FString &Input, FString &Output)
Converts a Unicode code point as hex into the corresponding UTF-16 FString representation. Returns true when the conversion is successful.
Declaration
public: static bool HexCodePointToFString(const FString &Input, FString &Output)
Parameters
Type |
Name |
Description |
const FString & |
Input |
|
FString & |
Output |
|
Returns
|
Improve this Doc
View Source
IsFontOffline(const UFont *Font)
Returns true if a UFont is using offline caching.
Declaration
public: static bool IsFontOffline(const UFont *Font)
Parameters
Type |
Name |
Description |
const UFont * |
Font |
|
Returns
|
Improve this Doc
View Source
IsPlayInMobilePreview(const UObject *WorldContextObject)
Returns whether the world the passed object belongs to is executing within a mobile preview window.
Declaration
public: static bool IsPlayInMobilePreview(const UObject *WorldContextObject)
Parameters
Type |
Name |
Description |
const UObject * |
WorldContextObject |
|
Returns