Image is not displayed even with a -assets to folder
Why this is I do not know what can be displayed
chara001_idle_ae-assets
Image does not appear when you run the script on your own
It had no effect I tried to this↓↓
ae_to_spine.jsx
1144〜
AE2JSON.prototype.makeSpineAttachmentNameStr = function(sourceName) {
if (sourceName == null) {
return null;
} else {
var attachmentName = sourceName.replace(/([.]+).*/,"$1");
attachmentName = attachmentName
.replace(/L[0-9]+$/,'')
.replace(/ /g,'')
.replace(/.[A-Za-z.]+$/,'');
if (this.numCompsSelected > 1) {
return this.projName+"/"+attachmentName;
} else {
return this.activeComp+"/"+attachmentName;
}
}
}