mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2024-12-25 19:28:28 +00:00
[engine] 修复 Spine 动态合图未判断 attachment 是否存在 region 对象报错的问题
This commit is contained in:
parent
a2404dae86
commit
5c72a79a02
@ -325,41 +325,43 @@ export default class SpineAssembler extends Assembler {
|
||||
}
|
||||
} else {
|
||||
const region = attachment.region;
|
||||
const alreadyInAtlas = !!region._original;
|
||||
if (region) {
|
||||
const alreadyInAtlas = !!region._original;
|
||||
|
||||
if (alreadyInAtlas) {
|
||||
// 可能出现多个 attachment 共用同一个 region
|
||||
if (_packedRegions.includes(region)) {
|
||||
this.updatePackedAttachment(attachment, false);
|
||||
}
|
||||
} else if (region.texture && region.texture._texture.packable) {
|
||||
if (region._spriteFrame) {
|
||||
const spriteFrame = region._spriteFrame;
|
||||
region._spriteFrame = null;
|
||||
spriteFrame.destroy();
|
||||
}
|
||||
_tmpRegionData.initWithAttachment(attachment);
|
||||
const frame = _tmpRegionData.toSpriteFrame();
|
||||
const packedFrame = cc.dynamicAtlasManager.insertSpriteFrame(frame);
|
||||
if (packedFrame) {
|
||||
frame._setDynamicAtlasFrame(packedFrame);
|
||||
if (alreadyInAtlas) {
|
||||
// 可能出现多个 attachment 共用同一个 region
|
||||
if (_packedRegions.includes(region)) {
|
||||
this.updatePackedAttachment(attachment, false);
|
||||
}
|
||||
} else if (region.texture && region.texture._texture.packable) {
|
||||
if (region._spriteFrame) {
|
||||
const spriteFrame = region._spriteFrame;
|
||||
region._spriteFrame = null;
|
||||
spriteFrame.destroy();
|
||||
}
|
||||
_tmpRegionData.initWithAttachment(attachment);
|
||||
const frame = _tmpRegionData.toSpriteFrame();
|
||||
const packedFrame = cc.dynamicAtlasManager.insertSpriteFrame(frame);
|
||||
if (packedFrame) {
|
||||
frame._setDynamicAtlasFrame(packedFrame);
|
||||
|
||||
region._original = {
|
||||
_texture: region.texture,
|
||||
_x: region.x,
|
||||
_y: region.y,
|
||||
_ref: 0,
|
||||
};
|
||||
region._original = {
|
||||
_texture: region.texture,
|
||||
_x: region.x,
|
||||
_y: region.y,
|
||||
_ref: 0,
|
||||
};
|
||||
|
||||
region._spriteFrame = frame;
|
||||
region._spriteFrame = frame;
|
||||
|
||||
_tmpRegionData.updateWithPackedFrame(packedFrame);
|
||||
_tmpRegionData.updateWithPackedFrame(packedFrame);
|
||||
|
||||
this.updatePackedAttachment(attachment);
|
||||
this.updatePackedAttachment(attachment);
|
||||
|
||||
_packedRegions.push(region);
|
||||
} else {
|
||||
frame.destroy();
|
||||
_packedRegions.push(region);
|
||||
} else {
|
||||
frame.destroy();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user