iwer 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -1
- package/build/iwer.js +243 -200
- package/build/iwer.min.js +1 -1
- package/build/iwer.module.js +243 -200
- package/build/iwer.module.min.js +1 -1
- package/lib/device/XRController.d.ts +6 -1
- package/lib/device/XRController.d.ts.map +1 -1
- package/lib/device/XRController.js +16 -5
- package/lib/device/XRController.js.map +1 -1
- package/lib/device/XRDevice.d.ts +6 -1
- package/lib/device/XRDevice.d.ts.map +1 -1
- package/lib/device/XRDevice.js +15 -2
- package/lib/device/XRDevice.js.map +1 -1
- package/lib/device/configs/headset/meta.d.ts.map +1 -1
- package/lib/device/configs/headset/meta.js +4 -0
- package/lib/device/configs/headset/meta.js.map +1 -1
- package/lib/session/XRSession.d.ts.map +1 -1
- package/lib/session/XRSession.js +16 -1
- package/lib/session/XRSession.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img height="60px" width="60px" src="https://meta-quest.github.io/immersive-web-emulation-runtime/iwer-text.svg" />
|
|
3
|
+
<h1 align="center">Immersive Web Emulation Runtime</h1>
|
|
4
|
+
</p>
|
|
5
|
+
|
|
6
|
+
<p align="center">
|
|
7
|
+
<a href="https://www.npmjs.com/package/iwer"><img src="https://badgen.net/npm/v/iwer/?icon=npm&color=orange" alt="npm version" /></a>
|
|
8
|
+
<a href="https://www.npmjs.com/package/iwer"><img src="https://badgen.net/npm/dt/iwer" alt="npm download" /></a>
|
|
9
|
+
<a href="https://www.typescriptlang.org/"><img src="https://badgen.net/badge/icon/typescript/?icon=typescript&label=lang" alt="language" /></a>
|
|
10
|
+
<a href="https://raw.githubusercontent.com/meta-quest/immersive-web-emulation-runtime/main/LICENSE"><img src="https://badgen.net/github/license/meta-quest/immersive-web-emulation-runtime/" alt="license" /></a>
|
|
11
|
+
</p>
|
|
2
12
|
|
|
3
13
|
The Immersive Web Emulation Runtime (IWER) is a TypeScript-based tool designed to enable the running of WebXR applications in modern browsers without requiring native WebXR support. By emulating the WebXR Device API, IWER provides developers with the ability to test and run WebXR projects across a wide range of devices, ensuring compatibility and enhancing the development process.
|
|
4
14
|
|