You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-88893
The problem was a post process of the meta data to remove unprintable characteres. Process that removed the end character from the string... So configurations of the parts became different for each instance of part... #rb johan.duparc [CL 11519600 by David Lesage in 4.25 branch]
This commit is contained in:
@@ -47,7 +47,7 @@ void FDatasmithUtils::SanitizeNameInplace(FString& InString)
|
||||
|
||||
void FDatasmithUtils::SanitizeStringInplace(FString& InString)
|
||||
{
|
||||
for (TCHAR& Char : InString.GetCharArray())
|
||||
for (TCHAR& Char : InString)
|
||||
{
|
||||
if (!FChar::IsPrint(Char) && !FChar::IsWhitespace(Char))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user