Add RumbleManager for enhanced player feedback and integrate with existing systems

This commit is contained in:
2025-12-13 00:19:09 +01:00
parent 6c15935b02
commit eb1a1b224a
8 changed files with 81 additions and 12 deletions

View File

@@ -5,6 +5,8 @@ namespace Infrastructure.Unity
{
public class TeleporterAdapter : MonoBehaviour
{
public event Action OnTeleport;
private Transform _targetDestination;
private TeleporterAdapter _targetAdapter;
private float _cooldownTimer;
@@ -45,6 +47,7 @@ namespace Infrastructure.Unity
}
Lock(1.0f);
OnTeleport?.Invoke();
}
}