Update Files
This commit is contained in:
15
Kha/Sources/kha/vr/Pose.hx
Normal file
15
Kha/Sources/kha/vr/Pose.hx
Normal file
@ -0,0 +1,15 @@
|
||||
package kha.vr;
|
||||
|
||||
import kha.math.Quaternion;
|
||||
import kha.math.Vector3;
|
||||
|
||||
// Position and orientation together.
|
||||
class Pose {
|
||||
public var Orientation: Quaternion;
|
||||
public var Position: Vector3;
|
||||
|
||||
public function new() {
|
||||
Orientation = new Quaternion();
|
||||
Position = new Vector3();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user