[Player][Interactions] Items can be switched when picked up now

This commit is contained in:
Michal Pikulski
2025-09-04 11:50:02 +02:00
parent 387f11ab4a
commit 496ef10b8b
10 changed files with 93 additions and 2 deletions

View File

@@ -43,5 +43,6 @@ public class GameManager : MonoBehaviour
public float FollowUpdateInterval => gameSettings != null ? gameSettings.followUpdateInterval : 0.1f;
public float FollowerSpeedMultiplier => gameSettings != null ? gameSettings.followerSpeedMultiplier : 1.2f;
public float HeldIconDisplayHeight => gameSettings != null ? gameSettings.heldIconDisplayHeight : 2.0f;
public GameObject BasePickupPrefab => gameSettings != null ? gameSettings.basePickupPrefab : null;
// Add more accessors as needed
}