[Interactions] Make combinable object pickup-able and swappable

This commit is contained in:
Michal Pikulski
2025-09-08 14:56:59 +02:00
parent a1b1d7475f
commit f4a183d524
7 changed files with 138 additions and 30 deletions

View File

@@ -96,4 +96,5 @@ public class GameManager : MonoBehaviour
public float EndlessDescenderClampXMax => gameSettings != null ? gameSettings.endlessDescenderClampXMax : 5f;
public float EndlessDescenderSpeedExponent => gameSettings != null ? gameSettings.endlessDescenderSpeedExponent : 2.5f;
public GameSettings.HoldMovementMode DefaultHoldMovementMode => gameSettings != null ? gameSettings.defaultHoldMovementMode : GameSettings.HoldMovementMode.Pathfinding;
public GameObject LevelSwitchMenuPrefab => gameSettings != null ? gameSettings.levelSwitchMenuPrefab : null;
}