• Editor
  • Upscale Spine Projects

Im in the middle of building assets for our game but my producer wants me to upscale the resolution of the images.

Is there a way to do that while preserving the project and animations, so i wont need to go back and start new.

Related Discussions
...

To upscale your Spine project while preserving the animations, you can follow these steps:

  1. Export your project to JSON: Make sure to include nonessential data in the export.
  2. Rename your images folder: This prevents Spine from using the original images by default.
  3. Create a new project: In Spine, start a new project.
  4. Import the JSON: Import the JSON file you exported earlier. During the import, specify the scale factor that corresponds to your desired upscale (e.g., 2 for 200%).
  5. Prepare your high-resolution assets: Place your new, higher-resolution images in a folder.
  6. Point Spine to the new images: In the Spine editor, update the images folder path to point to your new high-resolution images.

This process allows you to upscale your assets without losing your existing animations and rigging. You can also use different resolution images at runtime by specifying a scale when loading the skeleton JSON, which can be useful for adapting to different screen resolutions.

how do i specify this "specify the scale factor that corresponds to your desired upscale (e.g., 2 for 200%)."

  • Misaki ответили на это сообщение.

    nyalnazov You can specify it here:

    thanks