ColliderComponent的问题

一个Node下多个BoxColliderCompoennt组件时。Center参数似乎没有效果。
还有个问题是ShpereCollider的radio参数没办法保存;(如果prefab中设置成1.5,拉到场景中就变成默认值1)

先这样子可以对付过去
let comps = this.node.getComponents(BoxColliderComponent)
for(let i=0;i<comps.length;i++){
(comps[i].boxShape as any).setIndex(i);
comps[i].boxShape.center = comps[i].center;
}

请问什么版本呢,第一个问题可以给重现 Demo 吗

另外第二个问题是已知问题,并且只影响编辑器环境,运行时不会重置大小,1.0.4 正式版将修复