18 lines
316 B
C#
18 lines
316 B
C#
|
using UnityEngine;
|
|||
|
using UnityEditor;
|
|||
|
using Spine;
|
|||
|
using Spine.Unity;
|
|||
|
|
|||
|
public class TestSpine :MonoBehaviour
|
|||
|
{
|
|||
|
|
|||
|
public SkeletonGraphic graph;
|
|||
|
public void Start()
|
|||
|
{
|
|||
|
var t= graph.SkeletonData.animations;
|
|||
|
foreach (var item in t)
|
|||
|
{
|
|||
|
Debug.LogError(item.name);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|