mirror of
https://github.com/troisjs/trois.git
synced 2024-11-23 20:02:32 +08:00
Add missing SphereGeometry parameters
This commit is contained in:
parent
fee0fcf9b6
commit
10b86eff6a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user