OSDN Git Service

#37173 演奏画面でHHOを叩いても画面内のパッドがアニメーションしない問題を修正。
authoryyagi <yyagi.dtxmania@gmail.com>
Tue, 30 May 2017 14:16:22 +0000 (23:16 +0900)
committeryyagi <yyagi.dtxmania@gmail.com>
Tue, 30 May 2017 14:16:22 +0000 (23:16 +0900)
DTXMania/コード/ステージ/07.演奏/ドラム画面/CAct演奏Drumsパッド.cs

index dfa75e7..49ccb53 100644 (file)
@@ -41,6 +41,10 @@ namespace DTXMania
 
                public void Hit(EPad ePad)
                {
+                       if (ePad == EPad.HHO)       // #37173 2017.5.30 yyagi; There is HH pad, but no HHO pad. So, HH pad should be flashed insted of HHO
+                       {
+                               ePad = EPad.HH;
+                       }
                        this.stパッド状態[ePad].n明るさ = 6;
                        this.stパッド状態[ePad].nY座標加速度dot = 2;
                }