Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,10 @@ private void ClearAvatarInfo()
AvatarPasswordField.SetPassword(string.Empty);

WindowsIcon.SetActive(false);
AndroidIcon.SetActive(false);
MacIcon.SetActive(false);
LinuxIcon.SetActive(false);
AndroidIcon.SetActive(false);
IOSIcon.SetActive(false);

NewAvatarPanel.Hide();
}
Expand Down Expand Up @@ -371,7 +373,7 @@ private void ShowAvatarInfo(AvatarMenuItem item)
}
else
{
creationDate = DateTime.Parse(creationDate).ToString(CultureInfo.InvariantCulture);
creationDate = DateTime.Parse(creationDate, CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal | DateTimeStyles.AdjustToUniversal).ToString(CultureInfo.InvariantCulture);
creationDate += " UTC";
}

Expand All @@ -381,8 +383,10 @@ private void ShowAvatarInfo(AvatarMenuItem item)
.Select(pair => pair.Platform).ToArray();

WindowsIcon.SetActive(false);
AndroidIcon.SetActive(false);
MacIcon.SetActive(false);
LinuxIcon.SetActive(false);
AndroidIcon.SetActive(false);
IOSIcon.SetActive(false);

foreach (string platform in platforms)
{
Expand All @@ -391,16 +395,16 @@ private void ShowAvatarInfo(AvatarMenuItem item)
case "StandaloneWindows64":
WindowsIcon.SetActive(true);
break;
case "StandaloineOSX":
case "StandaloneOSX":
MacIcon.SetActive(true);
break;
case "StandaloneLinux64":
AndroidIcon.SetActive(true);
LinuxIcon.SetActive(true);
break;
case "Android":
LinuxIcon.SetActive(true);
AndroidIcon.SetActive(true);
break;
case "IOS":
case "iOS":
IOSIcon.SetActive(true);
break;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1776,7 +1776,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 223, y: -121.7486}
m_AnchoredPosition: {x: 223, y: -85.81}
m_SizeDelta: {x: 446, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &2264348884499747338
Expand Down Expand Up @@ -2247,7 +2247,7 @@ MonoBehaviour:
m_Right: 0
m_Top: 0
m_Bottom: 15
m_ChildAlignment: 3
m_ChildAlignment: 0
m_Spacing: 6
m_ChildForceExpandWidth: 0
m_ChildForceExpandHeight: 0
Expand Down Expand Up @@ -2883,7 +2883,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 223, y: -84.2886}
m_AnchoredPosition: {x: 223, y: -48.35}
m_SizeDelta: {x: 446, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &2095707598414003572
Expand Down Expand Up @@ -5824,7 +5824,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 1}
m_AnchorMax: {x: 0, y: 1}
m_AnchoredPosition: {x: 223, y: -48.038597}
m_AnchoredPosition: {x: 223, y: -12.1}
m_SizeDelta: {x: 446, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &6646175121151104793
Expand Down
Loading