Thank you,Nate. But it can't help me. I want to use the c# script make a spineAnimation,like this:
"
TextureLoader textureLoader = ...
Atlas atlas = new Atlas("myAtlas.atlas", textureLoader);
SkeletonJson json = new SkeletonJson(atlas);
SkeletonData skeletonData = json.readSkeletonData("mySkeleton.json");
"
I have no idea where find the "TextureLoader textureLoader";
Do you mean I have to write a class implements the TextureLoader interface ?
I have read the MaterialsTextureLoader ,but it needs an AtlasAsset, I can't create an AtlasAsset instance.
In fact. I want to know how can I load the atlas and the josn files in the run time.
Thank you ,again.