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
@@ -4,6 +4,7 @@ using UMA;
using UMA.CharacterSystem;
using System.Collections.Generic;
using UnityEngine.UI;
using static UnityEngine.Rendering.DebugUI;
public class CharacterDescriptor : MonoBehaviour
{
@@ -79,4 +80,10 @@ public class CharacterDescriptor : MonoBehaviour
_dna["belly"].Set(value);
_avatar.BuildCharacter();
}
public void ChangeSkinColor(Color color)
{
_avatar.SetColor("Skin",color);
_avatar.UpdateColors(true);
}
}