add skin color modifier

This commit is contained in:
2025-01-07 21:43:47 +02:00
parent bf4bdfdfd1
commit 090ffeb17d
34 changed files with 532 additions and 15 deletions
+22
View File
@@ -0,0 +1,22 @@
using UnityEngine;
public class ToolTipTrigger : MonoBehaviour
{
//private static LTDescr delay;
//[SerializeField] private string _content;
//[SerializeField] private string _header;
//public void OnPointerEnter(PointerEventData eventData)
//{
// delay = LeanTween.delayedCall(0.5f, () =>
// {
// ToolTipSystem.Show(_content, _header);
// });
//}
//public void OnPointerExit(PointerEventData eventData)
//{
// LeanTween.cancel(delay.uniqueId);
// ToolTipSystem.Hide();
//}
}