Fix issues with forgot details menu

This commit is contained in:
2026-01-23 21:52:14 -07:00
parent 9af8c85c8c
commit 4d5dbc4c5b
2 changed files with 5 additions and 4 deletions

View File

@@ -19246,7 +19246,7 @@ RectTransform:
m_AnchorMin: {x: 0, y: 0.5} m_AnchorMin: {x: 0, y: 0.5}
m_AnchorMax: {x: 1, y: 0.5} m_AnchorMax: {x: 1, y: 0.5}
m_AnchoredPosition: {x: 0, y: -160} m_AnchoredPosition: {x: 0, y: -160}
m_SizeDelta: {x: -20.000008, y: 80} m_SizeDelta: {x: -30, y: 80}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1945938773 --- !u!114 &1945938773
MonoBehaviour: MonoBehaviour:
@@ -19268,7 +19268,7 @@ MonoBehaviour:
m_OnCullStateChanged: m_OnCullStateChanged:
m_PersistentCalls: m_PersistentCalls:
m_Calls: [] m_Calls: []
m_text: 'Note: The Lncvrt Games account you forgot the username for must be associated m_text: 'Note: The Lncvrt Games account you forgot the details for must be associated
with the email you enter above.' with the email you enter above.'
m_isRightToLeft: 0 m_isRightToLeft: 0
m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -19296,7 +19296,7 @@ MonoBehaviour:
m_faceColor: m_faceColor:
serializedVersion: 2 serializedVersion: 2
rgba: 4294967295 rgba: 4294967295
m_fontSize: 23.4 m_fontSize: 23.45
m_fontSizeBase: 20 m_fontSizeBase: 20
m_fontWeight: 400 m_fontWeight: 400
m_enableAutoSizing: 1 m_enableAutoSizing: 1
@@ -20476,7 +20476,7 @@ MonoBehaviour:
m_faceColor: m_faceColor:
serializedVersion: 2 serializedVersion: 2
rgba: 4294967295 rgba: 4294967295
m_fontSize: 40 m_fontSize: 36
m_fontSizeBase: 36 m_fontSizeBase: 36
m_fontWeight: 400 m_fontWeight: 400
m_enableAutoSizing: 1 m_enableAutoSizing: 1

View File

@@ -22,6 +22,7 @@ public class AccountForgotDetails : MonoBehaviour
forgotDetailsSubmitButton.interactable = false; forgotDetailsSubmitButton.interactable = false;
mode = 0; mode = 0;
forgotDetailsTitleText.text = ""; forgotDetailsTitleText.text = "";
forgotDetailsStatusText.text = "";
AccountHandler.instance.SwitchPanel(2); AccountHandler.instance.SwitchPanel(2);
}); });
forgotDetailsSubmitButton.onClick.AddListener(() => ForgotDetails()); forgotDetailsSubmitButton.onClick.AddListener(() => ForgotDetails());