Swap price & designer name places

This commit is contained in:
2025-07-14 14:31:45 -07:00
parent 166027526e
commit 60597456e9
2 changed files with 5 additions and 5 deletions

View File

@@ -2015,7 +2015,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0.5}
m_AnchorMax: {x: 1, y: 0.5}
m_AnchoredPosition: {x: 0, y: -30}
m_AnchoredPosition: {x: 0, y: -70}
m_SizeDelta: {x: 0, y: 25}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &716127916
@@ -5401,7 +5401,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0.5}
m_AnchorMax: {x: 1, y: 0.5}
m_AnchoredPosition: {x: 0, y: -70}
m_AnchoredPosition: {x: 0, y: -30}
m_SizeDelta: {x: 0, y: 25}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1916455837
@@ -5882,8 +5882,8 @@ RectTransform:
m_Children:
- {fileID: 1181921665}
- {fileID: 1866619515}
- {fileID: 716127914}
- {fileID: 1916455836}
- {fileID: 716127914}
- {fileID: 1475930415}
m_Father: {fileID: 1517048289}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}

View File

@@ -70,8 +70,8 @@ public class IconMarketplaceDownloadIcon : MonoBehaviour
ImageUtil.RenderFromBase64(entry["data"].ToString(), newIcon.transform.GetChild(0).GetChild(0).GetComponent<Image>());
newIcon.transform.GetChild(1).GetComponent<TMP_Text>().text = "Bird Name: " + entry["name"].ToString();
newIcon.transform.GetChild(2).GetComponent<TMP_Text>().text = "Designer Name: " + entry["username"].ToString();
newIcon.transform.GetChild(3).GetComponent<TMP_Text>().text = "Price " + entry["price"].ToString() + " coin";
newIcon.transform.GetChild(2).GetComponent<TMP_Text>().text = "Price " + entry["price"].ToString() + " coin";
newIcon.transform.GetChild(3).GetComponent<TMP_Text>().text = "Designer Name: " + entry["username"].ToString();
newIcon.transform.GetChild(4).GetChild(0).GetComponent<TMP_Text>().text = "Purchase";
newIcon.SetActive(true);