Skip to content
Snippets Groups Projects
Commit 7543c9e7 authored by Julius Fredrik Einum's avatar Julius Fredrik Einum
Browse files

Fixed pause on inventory

parent 74ceef60
No related branches found
No related tags found
2 merge requests!75Main,!71Juliuses nye super branch
......@@ -218,7 +218,8 @@ namespace BigSock {
// Code for opening the menu.
if (Input.GetKeyDown(KeyCode.I)) {
GameObject canvas = GameObject.Find("Canvas");
if(canvas != null) {
GameObject oldPlayerMenu = GameObject.Find("PlayerMenu(Clone)");
if (canvas != null && oldPlayerMenu == null) {
var playerMenu = PrefabService.SINGLETON.Instance("UI/PlayerMenu", canvas.transform);
var invMen = playerMenu.transform.GetChild(1).transform.GetChild(0).GetComponent<InventoryPanel>();
var statMen = playerMenu.transform.GetChild(1).transform.GetChild(1).GetComponent<StatPanel>();
......
......@@ -6,9 +6,21 @@ namespace BigSock.UI
{
public class PlayerMenu : MonoBehaviour
{
float originalTime;
public void Start()
{
originalTime = Time.timeScale;
Time.timeScale = 0;
}
public void ExitMenu()
{
Destroy(gameObject);
}
public void OnDestroy()
{
Time.timeScale = originalTime;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment