<div class='sourceset sourceset-android'>Android</div>

```kotlin
@ExperimentalMaterial3XrApi
public class VerticalOrbiterProperties(
    public val offset: Dp,
    public val offsetType: OrbiterOffsetType,
    public val position: ContentEdge.Vertical,
    public val alignment: Alignment.Vertical,
    public val shape: SpatialShape,
)
```

XR-specific properties for components that use vertically-aligned [Orbiter](/jetpack-compose/androidx.xr.compose/compose/composable-functions/Orbiter)s.

These properties should be provided via a `CompositionLocal` for the given component.

The component should also define a publicly-visible default instance of
[VerticalOrbiterProperties](/jetpack-compose/androidx.xr.compose.material3/material3/classes/VerticalOrbiterProperties) and use it if the `CompositionLocal` is not set.

## Functions

<h2 id="copy-offset-offsettype-position-alignment-shape">copy</h2>

```kotlin
public fun copy(
        offset: Dp? = null,
        offsetType: OrbiterOffsetType? = null,
        position: ContentEdge.Vertical? = null,
        alignment: Alignment.Vertical? = null,
        shape: SpatialShape? = null,
    ): VerticalOrbiterProperties
```

Returns a new [VerticalOrbiterProperties](/jetpack-compose/androidx.xr.compose.material3/material3/classes/VerticalOrbiterProperties) with one or more properties changed.

If `null` is provided for any value, the existing value will be used.