<!--
{
  "availability" : [
    "visionOS: 26.4.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "FoveatedStreaming",
  "identifier" : "/documentation/FoveatedStreaming/FoveatedStreamingSession/immersiveSpaceFromRemoteSceneTransform",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "Foveated Streaming"
    ],
    "preciseIdentifier" : "s:17FoveatedStreaming0aB7SessionC38immersiveSpaceFromRemoteSceneTransformSo13simd_float4x4avp"
  },
  "title" : "immersiveSpaceFromRemoteSceneTransform"
}
-->

# immersiveSpaceFromRemoteSceneTransform

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

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

## 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:

```swift
    session.immersiveSpaceFromRemoteSceneTransform = Transform(translation: [-5, 0, 0]).matrix
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)