Skip to content

Releases: Looking-Glass/looking-glass-webxr

Release: 0.6.0 - Spatial Display Support

08 Jul 16:15
b44ed27
Compare
Choose a tag to compare

Looking Glass WebXR Library v0.6.0

This release adds support for Looking Glass Spatial Displays and updates the ability to control quilt settings. By default, the quilt settings will be set to the connected display but can be overridden if desired.

  • Adds support for Looking Glass Spatial Displays
  • Improves rendering resolution for Looking Glass displays with 8K resolution
  • Adds support for setting custom quilt resolution
  • Adds support for setting custom columns and rows
  • Adds mouse and keyboard controls to main canvas
  • Adds auto close window when page is unloaded
  • Fixes bug where canvas wasn't properly reset after exiting a session

Looking Glass WebXR Library v0.3.0

16 Nov 20:27
f379b63
Compare
Choose a tag to compare

This release adds typescript definitions and adds a new API for setting the config with a single import. You can now set the config values directly from the polyfill as follows.

const polyfill = new LookingGlassWebXRPolyfill({
  tileHeight: 512,
  numViews: 45,
  targetY: 0,
  targetZ: 0,
  targetDiam: 3,
  fovy: (14 * Math.PI) / 180
})

// To make updates using the polyfill
polyfill.update({
  numViews: 50
})

// This change is backwards compatible, and you can still export the old config. 
const config = LookingGlassConfig
config.numViews = 50

In addition, this release cleans up the styling of the Looking Glass Controls and modifies the XR Button, if one is detected, by replacing Enter VR with Enter Looking Glass