Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package kha.vr;
// State of the sensor at a given absolute time.
class SensorState {
// Predicted pose configuration at requested absolute time.
// One can determine the time difference between predicted and actual
// readings by comparing ovrPoseState.TimeInSeconds.
public var Predicted: PoseState;
// Actual recorded pose configuration based on the sensor sample at a
// moment closest to the requested time.
public var Recorded: PoseState;
// Sensor temperature reading, in degrees Celsius, as sample time.
public var Temperature: Float;
// Sensor status described by ovrStatusBits.
public var Status: Int;
public function new() {}
}