3.8 spine图集换装

最近两天看了一圈spine图集换装的内容,发现3.8之后图集换装似乎只有一个setSlotTexture接口了,之前依靠attachment 的方法似乎都不能用了,但setSlotTexture直接使用spriteFrame.texture进行换图只能使用单图,如果使用图集会把整个图集的大图替换进去,找了一圈之后只能找到方法:将spriteFrame转换成Uint8Array格式之后再new Texture2D 出新的Texture2D对象,用uploadData(Uint8Array)把单个图片单独拿出来,

private updateSpineSp() {
        let spine as sp.Skeleton;
        let sp as SpriteFrame;
        if (sp) {
            let texture = new Texture2D();
            texture.reset({
                width: sp.rect.width,
                height: sp.rect.height
            })
            let buff = this.readTexturePixels(sp.texture as Texture2D, sp.rect, texture)

            texture.uploadData(buff)
            spine.setSlotTexture("XXX", texture)
        }
    }

 public readTexturePixels(texture: Texture2D, rect: math.Rect, copyTexture): Uint8Array {
    const gfxTexture = texture.getGFXTexture();
    if (gfxTexture == null) return null;

    const bufferSize = 4 * texture.width * texture.height;
    const buffer = new Uint8Array(bufferSize);

    const region = new gfx.BufferTextureCopy();
    region.texOffset.x = rect.x;
    region.texOffset.y = rect.y;
    region.texExtent.width = rect.width;
    region.texExtent.height = rect.height;
    const gfxDevice = copyTexture['_getGFXDevice']();
    gfxDevice.copyTextureToBuffers(gfxTexture, [buffer], [region]);
    return buffer;
}

有个小问题就是const gfxDevice = copyTexture’_getGFXDevice’;这玩意究竟靠不靠谱
或者还有没有更好的解决方法啊

1赞

赞!我也是这样写的,不知道是否有更好的方法

这个原生平台会奔溃,不知到你们遇到了吗?我使用的引起是3.8.5

暂时放弃了,不止原生会崩溃,小游戏ios加载也有问题,一时半会儿没空找问题,最后没用换装方法了

哦哦,看来还得找找其他解决办法

最后我通过修改引擎代码实现了一个版本,可以参考我的贴子
Creator3.x Spine局部换装支持使用图集