menu (1 or 2 Player) and escape

This commit is contained in:
2026-01-26 16:02:46 +01:00
parent b1b3332b49
commit ffdfd584ff
6 changed files with 807 additions and 16 deletions
+6
View File
@@ -30,6 +30,11 @@ public class BearAwareness : MonoBehaviour
private void Update()
{
ChangeSliderColor();
if (Input.GetKeyDown(KeyCode.Escape))
{
Application.Quit();
}
}
void IncreaseAwareness(int noice)
@@ -76,4 +81,5 @@ public class BearAwareness : MonoBehaviour
SilderColor.color = Color.darkGreen;
}
}
}