突出特殊方块删除

This commit is contained in:
2026-04-26 17:59:24 +08:00
parent 30fb10b66c
commit 8e68d9c712
5 changed files with 98 additions and 3 deletions
+3 -3
View File
@@ -888,7 +888,7 @@ int ClearExplosiveAreaAt(int centerY, int centerX)
}
}
TriggerCellClearEffect(clearedCells, clearedCellCount < 25 ? clearedCellCount : 25, true);
TriggerColoredCellClearEffect(clearedCells, clearedCellCount < 25 ? clearedCellCount : 25, RGB(255, 116, 78), true);
return clearedCellCount;
}
@@ -919,7 +919,7 @@ int ClearColumnAt(int column)
}
}
TriggerCellClearEffect(clearedCells, clearedCellCount, false);
TriggerColoredCellClearEffect(clearedCells, clearedCellCount, RGB(120, 232, 255), false);
return clearedCellCount;
}
@@ -950,7 +950,7 @@ int ClearRowAt(int row)
}
}
TriggerCellClearEffect(clearedCells, clearedCellCount, false);
TriggerColoredCellClearEffect(clearedCells, clearedCellCount, RGB(196, 255, 132), false);
return clearedCellCount;
}