diff --git a/src/geometries/SphereGeometry.ts b/src/geometries/SphereGeometry.ts index 71a73d5..c7a2db9 100644 --- a/src/geometries/SphereGeometry.ts +++ b/src/geometries/SphereGeometry.ts @@ -12,7 +12,7 @@ export const props = { } as const export function createGeometry(comp: any): SphereGeometry { - return new SphereGeometry(comp.radius, comp.widthSegments, comp.heightSegments) + return new SphereGeometry(comp.radius, comp.widthSegments, comp.heightSegments, comp.phiStart, comp.phiLength, comp.thetaStart, comp.thetaLength) } export default geometryComponent('SphereGeometry', props, createGeometry)