最近两天看了一圈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’;这玩意究竟靠不靠谱
或者还有没有更好的解决方法啊