I found one way myself, that possibly correct, but it looks like crutch for me. I open project, then import another project in first one. Then export as json in unity and get one atlas for both of projects. And I could import as many projects as I'd like and do the same.
But maybe I've missed something and there is more correct way? For example, I saw suggestions to use Spine cli, but it seems too hard without any simple example.
Here is my attempt how to reach the same result as above with cli:
// import first project in new project combine
spine -i ./project_folder1/project1.spine -o ./combined/combine.spine -r
// import second project in new project combine
spine -i ./project_folder2/project2.spine -o ./combined/combine.spine -r
// export combined project
spine -i ./combined/combine.spine -e ./export/
Is that the right way how do it with cli?spine -i ./project_folder1/project1.spine -o ./combined/combine.spine -r
// import second project in new project combine
spine -i ./project_folder2/project2.spine -o ./combined/combine.spine -r
// export combined project
spine -i ./combined/combine.spine -e ./export/