Like, i animated some slots alpha color for effect, but it doesn't work i imagen in unity
so i have to make animation that doesn't have keyframe of alpha
but it's too many to do what turn on spine, remove the keyframe, export, re import, and animating and coding all for just removing keyframe,
how to make it easier?
How to change a little seting in animation layer in unity?
@rmx The recommended way is always to do it the clean way and adjust your Spine project accordingly.
If you don't want to do that, you could either write an Editor script (see the docs here) in Unity which modifies certain keys in timelines of the SkeletonData, but that's much more work.
You could also export the skeleton as .json
and then open the file in a text editor and use string replacement operations. Then you could use Import Data..
to re-import the skeleton project into Spine from the modified .json
file.