i hope find a way just re-drag and drop to replace all of the spine assets
so i don't have to re-script and animation nodes
but when i drag it, always create another name of assets not replace it
I can't find to update the spine asset without re-work
To update Spine assets in Unity without creating duplicate names, you should avoid dragging and dropping the assets directly into the Unity editor. Instead, follow these steps:
Export the updated assets from the Spine Editor: Ensure you have the latest
.json
,.skel.bytes
,.atlas.txt
, and.png
files.Replace the files via file explorer: Use your operating system's file explorer or command line to copy the updated files directly into the appropriate folder in your Unity project's
Assets
directory. This will overwrite the existing files without creating duplicates.Reimport the assets in Unity: If Unity does not automatically detect the changes, you can manually reimport the assets. In Unity's Project panel, right-click on the folder containing your Spine assets and select
Reimport
.
By following these steps, Unity should update the assets while keeping all references intact, avoiding the need to re-script or reassign animation nodes.
For more detailed instructions, you can refer to the spine-unity Assets documentation.