Firstborn/Library/PackageCache/com.unity.collab-proxy@2.0.3/Editor/PlasticSCM/UI/DrawUserIcon.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

28 lines
743 B
C#

using UnityEditor;
using UnityEngine;
namespace Unity.PlasticSCM.Editor.UI
{
internal static class DrawUserIcon
{
static internal void ForPendingChangesTab(string commentText)
{
Rect rect = BuildUserIconAreaRect(commentText, 35f);
GUI.DrawTexture(rect, Images.GetEmptyGravatar());
}
static Rect BuildUserIconAreaRect(string commentText, float sizeOfImage)
{
GUIStyle commentTextAreaStyle = UnityStyles.PendingChangesTab.CommentTextArea;
Rect result = GUILayoutUtility.GetRect(sizeOfImage, sizeOfImage); // Needs to be a square
result.x = commentTextAreaStyle.margin.left;
return result;
}
}
}