Tokenizer is now done, we also have the new InternalizeID and ExternalizeID
This commit is contained in:
@@ -65,6 +65,9 @@ FString WingUtils::SanitizeName(const FString &InName)
|
||||
if (c == ' ') c=L'·';
|
||||
if (c == '<') c=L'◁';
|
||||
if (c == '>') c=L'▷';
|
||||
if (c == '(') c=L'❨';
|
||||
if (c == ')') c=L'❩';
|
||||
if (c == '=') c=L'≡';
|
||||
if (c == ',') c=L'▾';
|
||||
Name[Dst++] = c;
|
||||
}
|
||||
@@ -84,6 +87,9 @@ FString WingUtils::UnsanitizeName(const FString &InName)
|
||||
if (c == L'·') c=' ';
|
||||
if (c == L'◁') c='<';
|
||||
if (c == L'▷') c='>';
|
||||
if (c == L'❨') c='(';
|
||||
if (c == L'❩') c=')';
|
||||
if (c == L'≡') c='=';
|
||||
if (c == L'▾') c=',';
|
||||
Name[Dst++] = c;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user