handzlikchris / handzlikchris/FastScriptReload
[Error] An error is caused if the source code contains English characters
- 主要言語
- C#
- スター
- 2.2k
- フォーク
- 167
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
Included in the original code
public static string[] SplitStringByComma(string input)
{
string[] splitStrings = input.Split(new char[] { ',', ',' });
return splitStrings;
}
After FSR processing
public static string[] SplitStringByComma(string input)
{
string[] splitStrings = input.Split(new char[] { '��', ',' });
return splitStrings;
}
No problem if don't use Chinese characters
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
調査の方向性
Start with the SplitStringByComma entry point shown in the report and reproduce the issue using the Chinese comma character. Trace the FSR processing that changes the character to � while preserving the ASCII comma. Done means the Chinese character remains intact after processing and inputs without Chinese characters continue to work.
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- csharp, unity
- 領域
- devtools, game-dev
- issue の種類
- バグ
- 難易度
- 3/5
- 見積もり時間
- 1〜2日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100