Skip to content

Commit 324b87b

Browse files
committed
設定ファイルの調整、ローカライズの修正
1 parent 658c2d2 commit 324b87b

3 files changed

Lines changed: 6 additions & 8 deletions

File tree

Inferno/ChaosMode/ChaosMode.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,6 @@ protected override void Setup()
103103
})
104104
.AddTo(CompositeDisposable);
105105

106-
107-
108106

109107
IsActiveRP.Subscribe(_ =>
110108
{
@@ -119,9 +117,9 @@ protected override void Setup()
119117

120118
_nextTreatType = _currentTreatType;
121119

122-
//F7でキャラカオスの切り替え(暫定
123-
OnKeyDownAsObservable
124-
.Where(x => IsActive && x.KeyCode == Keys.F7)
120+
//キャラカオスの切り替え
121+
CreateInputKeywordAsObservable("ChaosMode_MissionCharacterBehaviour", "F7")
122+
.Where(_ => IsActive)
125123
.Do(_ =>
126124
{
127125
_nextTreatType = (MissionCharacterBehaviour)(((int)_nextTreatType + 1) % 3);

Inferno/InfernoScripts/Worlds/ChaosAirPlane.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace Inferno
2020
[Serializable]
2121
internal class ChaosAirPlaneConfig : InfernoConfig
2222
{
23-
public int _airPlaneCount = 2;
23+
private int _airPlaneCount = 2;
2424

2525
[JsonProperty("AirPlaneCount")]
2626
public int AirPlaneCount

Inferno/Properties/ChaosModeLocalize.ja.resx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
1313
</resheader>
1414
<data name="OverrideMissionCharacterWeapon" xml:space="preserve">
15-
<value>ミッション関連キャラクターの武器を上書きするかどうか。M
16-
issionCharacterBehaviourの設定とは独立して機能します。</value>
15+
<value>ミッション関連キャラクターの武器を上書きするかどうか。
16+
MissionCharacterBehaviourの設定とは独立して機能します。</value>
1717
</data>
1818
<data name="AttackPlayerCorrection" xml:space="preserve">
1919
<value>プレイヤーの狙われやすさを補正するか。

0 commit comments

Comments
 (0)