more webxr support

This commit is contained in:
awtterpip
2024-02-13 16:06:30 -06:00
parent a078d4baa9
commit cea1d58a15
13 changed files with 588 additions and 590 deletions

8
src/types.rs Normal file
View File

@@ -0,0 +1,8 @@
use bevy::math::{Quat, Vec3};
pub struct Pose {
pub translation: Vec3,
pub rotation: Quat,
}
pub struct Haptic;