addChild() 不显示

利用复用池回收预制资源后,再次创建,界面上没有显示,但是打印的话确实是创建了,坐标也有,求教学

onCollisionExit: function (other, self) {
console.log(‘碰撞结束’);
if (other.tag === 666) {
this.desMonster(other.node);
}
},
我在碰撞结束后,回收预制资源,然后在回收方法里再次生成,显示不上
desMonster(node){
this.monsterPool.put(node);
this.spawnMonster();
},

你回收后,再次使用的时候初始化下

回收后再次初始化复用池吗?

从对象池拿出来的对象需要设置parent。