Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
アイテム名を日本語化しないオプションを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
azutake committed Apr 9, 2022
1 parent 37dc319 commit 9d89952
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions JapanesePatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ public class JapanesePatcher : MonoBehaviour
{
private static ConfigEntry<bool> _isForceJapanese;
private static ConfigEntry<int> _waitTime;
private static ConfigEntry<bool> _isIgnoreItemName;

internal static void Setup()
{
_isForceJapanese = BepInExLoader.Inst.Config.Bind("General", "ForceLanguageToJapanese", true, "言語を強制的に日本語にする");
_waitTime = BepInExLoader.Inst.Config.Bind("General", "PatchJapaneseWaitFrame", 300, "早すぎるとゲーム自体の読み込みと競合するため起動してから指定したフレーム数待機してから日本語を適用する");
_isIgnoreItemName = BepInExLoader.Inst.Config.Bind("General", "IsIgnoreItemName", false, "アイテム名を日本語化しないようにします。変更後の適用にはゲームの再起動が必要です");
BepInExLoader.Inst.Log.LogMessage("Japanese Patcher Injected.");
ClassInjector.RegisterTypeInIl2Cpp<JapanesePatcher>();

Expand Down Expand Up @@ -133,6 +135,9 @@ internal void Update()
if (string.IsNullOrWhiteSpace(japaneses[term.Term]))
continue;

if (_isIgnoreItemName.Value && term.Term.StartsWith("Items/") && !term.Term.EndsWith("Desc"))
continue;

term.Languages[jaLangIndex] = japaneses[term.Term];
}

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ Core Keeperインストールフォルダ内の `BepInEx` 内にある `config`
- 技術的問題により、言語設定を日本語にしてもゲーム開始時に英語になってしまうため、起動時日本語に切り替えるオプションです。デフォルトで有効になっています。他の言語で遊びたい場合、オフにすることを推奨します
* パッチ適用までのフレーム数
- CoreKeeperの言語リソース読み込みが非同期であるため、マシンスペックによってはパッチ適用と言語リソース読み込みが競合し、ゲーム中に不具合が生じる可能性があるため、フレーム数を調整出来るようになっています。ゲーム中に問題が生じた場合、この数値を大きくしてみてください
* アイテム名を日本語化しない
- 検索のためにアイテム名は日本語化したくない方向けのオプションです。デフォルトで無効です。有効( `true` )にすることでアイテム名は英語のままにすることが可能です

# 既知の問題
* フォントが一部アンチエイリアスをかけたような表示になる
Expand Down

0 comments on commit 9d89952

Please sign in to comment.