mirror of
https://github.com/servo/servo.git
synced 2025-08-15 10:25:32 +01:00
Basic XRReferenceSpace interface
This commit is contained in:
parent
90e0ceb7ce
commit
581470016f
7 changed files with 142 additions and 0 deletions
20
components/script/dom/webidls/XRReferenceSpace.webidl
Normal file
20
components/script/dom/webidls/XRReferenceSpace.webidl
Normal file
|
@ -0,0 +1,20 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||
|
||||
// https://immersive-web.github.io/webxr/#xrreferencespace-interface
|
||||
|
||||
enum XRReferenceSpaceType {
|
||||
"stationary",
|
||||
"bounded",
|
||||
"unbounded"
|
||||
};
|
||||
|
||||
dictionary XRReferenceSpaceOptions {
|
||||
required XRReferenceSpaceType type;
|
||||
};
|
||||
|
||||
[SecureContext, Exposed=Window] interface XRReferenceSpace : XRSpace {
|
||||
// attribute XRRigidTransform originOffset;
|
||||
// attribute EventHandler onreset;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue