Skip to content

Commit

Permalink
設定ファイルの調整、ローカライズの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
TORISOUP committed Dec 30, 2024
1 parent 658c2d2 commit 324b87b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions Inferno/ChaosMode/ChaosMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ protected override void Setup()
})
.AddTo(CompositeDisposable);




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

_nextTreatType = _currentTreatType;

//F7でキャラカオスの切り替え(暫定
OnKeyDownAsObservable
.Where(x => IsActive && x.KeyCode == Keys.F7)
//キャラカオスの切り替え
CreateInputKeywordAsObservable("ChaosMode_MissionCharacterBehaviour", "F7")
.Where(_ => IsActive)
.Do(_ =>
{
_nextTreatType = (MissionCharacterBehaviour)(((int)_nextTreatType + 1) % 3);
Expand Down
2 changes: 1 addition & 1 deletion Inferno/InfernoScripts/Worlds/ChaosAirPlane.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace Inferno
[Serializable]
internal class ChaosAirPlaneConfig : InfernoConfig
{
public int _airPlaneCount = 2;
private int _airPlaneCount = 2;

[JsonProperty("AirPlaneCount")]
public int AirPlaneCount
Expand Down
4 changes: 2 additions & 2 deletions Inferno/Properties/ChaosModeLocalize.ja.resx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="OverrideMissionCharacterWeapon" xml:space="preserve">
<value>ミッション関連キャラクターの武器を上書きするかどうか。M
issionCharacterBehaviourの設定とは独立して機能します。</value>
<value>ミッション関連キャラクターの武器を上書きするかどうか。
MissionCharacterBehaviourの設定とは独立して機能します。</value>
</data>
<data name="AttackPlayerCorrection" xml:space="preserve">
<value>プレイヤーの狙われやすさを補正するか。
Expand Down

0 comments on commit 324b87b

Please sign in to comment.