/* * public void SetPost(Post post) * { * modifyingDeveloper = post; * } */ public void Hire() { if (EndInterRound.CheckTutorial()) { return; } Developer.dev.HireDeveloper(modifyingDeveloper); //DeveloperCheckup.devChkup.RefreshPostTooltip(); }
public void ShowItems() { if (EndInterRound.CheckTutorial()) { return; } //이유는 모르겠지만 처음에 위치 조정을 안해주면 스크롤바랑 이미지 표시가 이상해짐 itemPanel2.GetComponent <ScrollRect>().verticalScrollbar.value = 0; itemscrollPanelrect.localPosition = new Vector2(itemscrollPanelrect.localPosition.x, -itemscrollPanelrect.rect.height / 2f); itemPanel.SetActive(true); itemStatusText.text = "남은 돈 : " + GameManager.gm.Money(); }