cocos creator 3.6 修改slot上面的图片

修改区域贴图即可

private async _addRegionAttachment(ani: sp.Skeleton, slotsName: string, url: string) {
let slot: sp.spine.Slot = ani.findSlot(slotsName);
if (!slot) {
console.error(‘slot is null’);
return;
}
if (!slot.attachment) {
console.error(‘attachment is null’, slotsName);
return;
}
let attachment = slot.attachment as sp.spine.RegionAttachment;
if (attachment == null) {
attachment = new sp.spine.RegionAttachment(slotsName);
}
let tex2d: Texture2D;
let region = this.createRegion(tex2d);
let skeletonTexture = new sp.SkeletonTexture({ width: tex2d.width, height: tex2d.height } as ImageBitmap);
if (tex2d) {
skeletonTexture.setRealTexture(tex2d);
//skeletonTexture._texture = tex2d;
}
region.texture = skeletonTexture;
attachment.setRegion(region);
attachment.width = region.width;
attachment.height = region.height;
attachment.updateOffset();
ani.invalidAnimationCache();

    // this._slotAttachMap.set(slotsName, attachment);
}

private createRegion(tex2d: Texture2D): sp.spine.TextureAtlasRegion {
console.log(‘创建region’);
let skeletonTexture = new sp.SkeletonTexture({ width: tex2d.width, height: tex2d.height } as ImageBitmap);
if (tex2d) {
skeletonTexture.setRealTexture(tex2d);
}

    let region = new sp.spine.TextureAtlasRegion();
    // region.page = page;
    region.width = tex2d.width;
    region.height = tex2d.height;
    region.originalWidth = tex2d.width;
    region.originalHeight = tex2d.height;
    region.rotate = false;
    region.u = 0;
    region.v = 0;
    region.u2 = 1;
    region.v2 = 1;
    region.texture = skeletonTexture;
    return region;
}