arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.collab-proxy@ab839cc7d2ad/Editor/UI/DrawUserIcon.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

41 lines
1.0 KiB
C#

using System;
using Codice.Client.Common;
using Unity.PlasticSCM.Editor.UI.Avatar;
using UnityEngine;
namespace Unity.PlasticSCM.Editor.UI
{
internal static class DrawUserIcon
{
internal static void ForPendingChangesTab(
ResolvedUser currentUser,
Action avatarLoadedAction)
{
Rect rect = BuildUserIconAreaRect(35f);
if (currentUser == null)
{
GUI.DrawTexture(rect, Images.GetEmptyGravatar());
return;
}
GUI.Label(rect, new GUIContent(
GetAvatar.ForEmail(currentUser.Name, avatarLoadedAction),
currentUser.Name));
}
static Rect BuildUserIconAreaRect(float sizeOfImage)
{
GUIStyle commentTextAreaStyle = UnityStyles.PendingChangesTab.UserIcon;
Rect result = GUILayoutUtility.GetRect(sizeOfImage, sizeOfImage); // Needs to be a square
result.x = commentTextAreaStyle.margin.left;
return result;
}
}
}