I can get the code to compile, but nothing happens. Is there something wrong in my code? I've got multiple skins on this character, is that affecting anything? :angel:
using Spine.Unity;
public class ChangeHairColor : MonoBehaviour {
[SerializeField] private SkeletonAnimator _skelAnim;
// Use this for initialization
void Start () {
_skelAnim = GetComponent<SkeletonAnimator> ();
}
// Update is called once per frame
void Update () {
if(Input.GetKeyDown(KeyCode.Alpha6)){
_skelAnim.skeleton.FindSlot ("hair_attach").SetColor (Color.red);
}
}
[ UPDATE ] OK, it works if using SkeletonAnimation ... but I'm using SkeletonAnimator.