Skip to content

Releases: pmndrs/react-xr

v1.0.5

17 May 16:45
Compare
Choose a tag to compare
  • New component XRCanvas
  • XR renamed to XRContextProvider to encourage the use of XRCanvas

Before:

<Canvas onCreate={({ gl }) => /* ... create vr button */} vr>
  <XR> {/* content */} </XR>
</Canvas>

After:

<XRCanvas>{/* content */}</XRCanvas>

Codesandbox examples were updated to the latest version