playPoint method
Plays the “point” (tick) SFX (auto‐preloads first).
Implementation
Future<void> playPoint() async {
await _ensurePreloaded();
final path = _cachedFiles['tick.wav']!;
await _fxPlayer.play(DeviceFileSource(path), volume: 0.8);
}
Plays the “point” (tick) SFX (auto‐preloads first).
Future<void> playPoint() async {
await _ensurePreloaded();
final path = _cachedFiles['tick.wav']!;
await _fxPlayer.play(DeviceFileSource(path), volume: 0.8);
}