@iwer/devui
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

@iwer/devui

npm version npm download language license

@iwer/devui is a developer user interface designed to integrate with the Immersive Web Emulation Runtime (IWER). It provides full control of an emulated WebXR device via an intuitive overlay UI on top of your development environment. This tool is ideal for developers building and testing WebXR applications, offering advanced features for comprehensive device emulation directly within your project's source code.

Key Features

  • Comprehensive Transform Controls: Modify the position and orientation of the emulated headset and controllers with precision.
  • Full Gamepad Controls Support: Exposes complete control over the emulated XR controllers, perfectly recreating the behavior and input of physical controllers for thorough testing.
  • Experimental Play Mode: Allows developers to efficiently test their immersive experiences using traditional FPS-like mouse and keyboard controls. This mode locks the pointer to the canvas and offers fully mappable keyboard shortcuts to emulate controller actions, streamlining the testing process without the need for physical devices.

Current Status

@iwer/devui is currently in 0.x status and is under active development. This is an early build, meaning that while it already excels in many areas and offers better usability than the current IWE, it is not yet complete. Key features and functionalities are being actively developed, and significant changes may occur before the official v1.0 release.

Areas Under Development

  • Emulated Hand Tracking Support: Enable hand tracking emulation to test applications that rely on this feature.
  • AR Module Support: Work is ongoing to integrate augmented reality features such as hit-testing, meshing, and plane detection.

Relationship with IWE

@iwer/devui is a package that developers can add directly to their projects, providing a powerful WebXR emulation tool within the source code. In contrast, IWE (Immersive Web Emulator) is an extension that injects similar emulation capabilities without requiring access to the project’s source code.

In the long term, starting with the IWE 2.0 release, the @iwer/devui experience will be integrated into IWE, enhancing its functionality. However, @iwer/devui will continue to be available as a standalone package, allowing developers to choose the integration method that best suits their workflow.

Installation

To install @iwer/devui, use the following npm command:

npm install @iwer/devui

Usage

@iwer/devui depends on an active IWER runtime within your experience. To get started, you first need to initialize the IWER runtime. If you haven't already, check out the IWER Getting Started Guide. Here is a quick example:

import { XRDevice, metaQuest3 } from 'iwer';

// Initialize the XR device with a preset configuration (e.g., Meta Quest 3)
const xrDevice = new XRDevice(metaQuest3);

// Install the IWER runtime to enable WebXR emulation
xrDevice.installRuntime();

You can choose to emulate other preset devices or use a custom device configuration with iwer. @iwer/devui will automatically read the configuration from iwer and generate the appropriate control UI based on the selected device.

To integrate @iwer/devui into your project, add the following code:

import { DevUI } from '@iwer/devui';

// Initialize the DevUI with the configured XR device
const devui = new DevUI(xrDevice);

This setup will allow you to use @iwer/devui's comprehensive emulation controls directly within your WebXR project.

License

@iwer/devui is licensed under the MIT License. For more details, see the LICENSE file in this repository.

Contributing

Your contributions are welcome! Please feel free to submit issues and pull requests. Before contributing, make sure to review our Contributing Guidelines and Code of Conduct.

Readme

Keywords

none

Package Sidebar

Install

npm i @iwer/devui

Weekly Downloads

1,209

Version

0.1.1

License

MIT

Unpacked Size

5.21 MB

Total Files

59

Last publish

Collaborators

  • felixtrz