* Decrease brush size
()
| 161 | * Decrease brush size |
| 162 | */ |
| 163 | decreaseBrushSize(): void { |
| 164 | if (this.state.brushSize > 1) { |
| 165 | this.state.brushSize-- |
| 166 | this.updateUI() |
| 167 | this.notifyChange() |
| 168 | soundManager.playSliderTick(this.state.brushSize / 4) |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Check if 3D mode is enabled |
no test coverage detected