added gamescreen UI and simple start menu

This commit is contained in:
Mausham
2026-01-04 16:41:13 -08:00
parent dcf3bead16
commit 589260292c
508 changed files with 247792 additions and 516 deletions

View File

@@ -13,6 +13,6 @@ MonoBehaviour:
m_Name: EnemyConfigSO
m_EditorClassIdentifier: CoreAssembly::Darkmatter.Core.EnemyConfigSO
walkSpeed: 1
chaseSpeed: 2
visionRange: 40
chaseSpeed: 4
visionRange: 50
attackRange: 3

View File

@@ -71,5 +71,15 @@ namespace Darkmatter.Core
OnReloadPerformed?.Invoke();
}
}
public void DisableInput()
{
action.Player.Disable();
}
public void EnableInput()
{
action.Player.Enable();
}
}
}