13 lines
422 B
Haxe
13 lines
422 B
Haxe
package js.html;
|
|
|
|
/**
|
|
This WebVR API interface represents all the information required to correctly render a scene for a given eye, including field of view information.
|
|
**/
|
|
@:native("VREyeParameters") extern class VREyeParameters {
|
|
function new();
|
|
final fieldOfView : VRFieldOfView;
|
|
final offset : js.lib.Float32Array;
|
|
final renderHeight : Float;
|
|
final renderWidth : Float;
|
|
static var prototype : VREyeParameters;
|
|
} |