엿보기 작업 중...
This commit is contained in:
parent
f059cb8f5b
commit
1e484ff542
|
|
@ -1087,6 +1087,7 @@ MonoBehaviour:
|
||||||
m_Script: {fileID: 11500000, guid: 104d2f59a70ee674082784f42bca5fa7, type: 3}
|
m_Script: {fileID: 11500000, guid: 104d2f59a70ee674082784f42bca5fa7, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
|
t_price: {fileID: 6102819711600179842}
|
||||||
--- !u!1 &4215562155681747119
|
--- !u!1 &4215562155681747119
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -1251,7 +1252,7 @@ GameObject:
|
||||||
- component: {fileID: 4948831804711677941}
|
- component: {fileID: 4948831804711677941}
|
||||||
- component: {fileID: 6102819711600179842}
|
- component: {fileID: 6102819711600179842}
|
||||||
m_Layer: 5
|
m_Layer: 5
|
||||||
m_Name: New TMP
|
m_Name: t_price
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
m_Icon: {fileID: 0}
|
m_Icon: {fileID: 0}
|
||||||
m_NavMeshLayer: 0
|
m_NavMeshLayer: 0
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,7 @@ public partial class GamePanel : MonoBehaviour
|
||||||
public bool PlayerTurn { get; set; } = true;
|
public bool PlayerTurn { get; set; } = true;
|
||||||
public bool GameOver { get; set; } = true;
|
public bool GameOver { get; set; } = true;
|
||||||
public int Stake { get; set; } = 100;
|
public int Stake { get; set; } = 100;
|
||||||
|
public bool IsPreview { get; set; } = false;
|
||||||
|
|
||||||
#region MonoBehaviour
|
#region MonoBehaviour
|
||||||
private void Awake()
|
private void Awake()
|
||||||
|
|
@ -350,7 +351,7 @@ public partial class GamePanel : MonoBehaviour
|
||||||
private void Initialize()
|
private void Initialize()
|
||||||
{
|
{
|
||||||
GameManager.Sound.PlayBGM(EBGMType.BGM_2);
|
GameManager.Sound.PlayBGM(EBGMType.BGM_2);
|
||||||
UseSepYulgget_To_Pee = false;
|
IsPreview = UseSepYulgget_To_Pee = false;
|
||||||
this.GamePanelEnabled(true);
|
this.GamePanelEnabled(true);
|
||||||
go_toppanel.SetActive(false);
|
go_toppanel.SetActive(false);
|
||||||
i_ai.sprite = DB_HuntingData.GetEntity(GameManager.DB.GetUnlockTargetIndex(true) << 1).DBF_UnlockImage;
|
i_ai.sprite = DB_HuntingData.GetEntity(GameManager.DB.GetUnlockTargetIndex(true) << 1).DBF_UnlockImage;
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,37 @@
|
||||||
|
using TMPro;
|
||||||
|
|
||||||
public class PreviewPopup : PopupBase
|
public class PreviewPopup : PopupBase
|
||||||
{
|
{
|
||||||
|
public TextMeshProUGUI t_price;
|
||||||
|
|
||||||
|
int m_price = 100;
|
||||||
|
|
||||||
public override void ShowPopup(int drawOrder)
|
public override void ShowPopup(int drawOrder)
|
||||||
{
|
{
|
||||||
base.ShowPopup(drawOrder);
|
base.ShowPopup(drawOrder);
|
||||||
GameManager.Sound.PlaySFX(ESFXType.Open_Popup);
|
GameManager.Sound.PlaySFX(ESFXType.Open_Popup);
|
||||||
|
|
||||||
|
t_price.text = m_price.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ClickYes()
|
public void ClickYes()
|
||||||
{
|
{
|
||||||
GameManager.UI.HideTopPopup();
|
if (GamePanel.Instance.IsPreview)
|
||||||
|
{
|
||||||
|
GameManager.UI.HideTopPopup();
|
||||||
|
GameManager.UI.ShowNStackPopup(EPopupType.PreViewUIPopup);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (GameManager.DB.Gold >= m_price)
|
||||||
|
{
|
||||||
|
GameManager.DB.SubGold(m_price, name);
|
||||||
|
GameManager.DB.SaveDatas();
|
||||||
|
GamePanel.Instance.IsPreview = true;
|
||||||
|
GameManager.UI.HideTopPopup();
|
||||||
|
GameManager.UI.ShowNStackPopup(EPopupType.PreViewUIPopup);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ClickCancel()
|
public void ClickCancel()
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,22 @@
|
||||||
using UnityEngine;
|
using TMPro;
|
||||||
|
|
||||||
public class PreviewUIPopup : PopupBase
|
public class PreviewUIPopup : PopupBase
|
||||||
{
|
{
|
||||||
|
public TextMeshProUGUI[] texts; // 0 소지금, 1 레벨, 2 0점 X 0배, 3 고, 4 흔듦, 5 뻑
|
||||||
|
public TextMeshProUGUI[] texts_mission; // 0 메인 미션, 1 서브 미션
|
||||||
|
public TextMeshProUGUI[] texts_cardcount; // 0 광, 1 열끗, 2 띠, 3 피
|
||||||
|
|
||||||
public override void ShowPopup(int drawOrder)
|
public override void ShowPopup(int drawOrder)
|
||||||
{
|
{
|
||||||
base.ShowPopup(drawOrder);
|
base.ShowPopup(drawOrder);
|
||||||
GameManager.Sound.PlaySFX(ESFXType.Open_Popup);
|
GameManager.Sound.PlaySFX(ESFXType.Open_Popup);
|
||||||
}
|
GameManager.ADS.HideBanner();
|
||||||
|
|
||||||
public void ClickYes()
|
|
||||||
{
|
|
||||||
GameManager.UI.HideTopPopup();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ClickCancel()
|
public void ClickCancel()
|
||||||
{
|
{
|
||||||
GameManager.Sound.PlaySFX(ESFXType.Button_Hit);
|
GameManager.Sound.PlaySFX(ESFXType.Button_Hit);
|
||||||
GameManager.UI.HideTopPopup();
|
GameManager.UI.HideTopPopup();
|
||||||
|
GameManager.ADS.ShowBanner();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue