---
title: immersiveSpaceFromRemoteSceneTransform
framework: foveatedstreaming
role: symbol
role_heading: Instance Property
path: foveatedstreaming/foveatedstreamingsession/immersivespacefromremotescenetransform
---

# immersiveSpaceFromRemoteSceneTransform

A transform matrix which maps from the streamed scene’s coordinate space origin to the origin of the app’s immersive space.

## Declaration

```swift
@MainActor final var immersiveSpaceFromRemoteSceneTransform: simd_float4x4 { get set }
```

## Discussion

Discussion By default, the origin of the remote scene matches the origin of your app’s immersive space. You can use this API to manipulate that conversion – e.g. to travel around a larger scene. For example, the following moves the entire streamed scene 5 meters to the right along the X axis:     session.immersiveSpaceFromRemoteSceneTransform = Transform(translation: [-5, 0, 0]).matrix
