Add BeatPulseController for music synchronization and event handling

This commit is contained in:
2025-12-13 00:42:18 +01:00
parent eb1a1b224a
commit cd28adc8e9
9 changed files with 209 additions and 1 deletions

View File

@@ -46,5 +46,9 @@ namespace Infrastructure.Unity
_shakeTimer = duration;
_shakeMagnitude = magnitude;
}
public void ShakeLight() => Shake(.1f, .1f);
public void ShakeMedium() => Shake(.15f, .3f);
public void ShakeHeavy() => Shake(.1f, .5f);
}
}