The shape of the collider. One of sphere, capsule, or plane is defined.

interface SpringBoneExtendedColliderShape {
    capsule?: SpringBoneExtendedColliderShapeCapsule;
    extensions?: { [name: string]: any };
    extras?: any;
    plane?: SpringBoneExtendedColliderShapePlane;
    sphere?: SpringBoneExtendedColliderShapeSphere;
}

Properties

extensions?: { [name: string]: any }
extras?: any