├── .gitignore ├── LICENSE ├── Main.gd ├── Main.tscn ├── README.md ├── default_env.tres ├── icon.png ├── icon.png.import ├── icon.svg ├── icon.svg.import ├── openxr_action_map.tres └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/Main.gd -------------------------------------------------------------------------------- /Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/Main.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/README.md -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/icon.png.import -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/icon.svg.import -------------------------------------------------------------------------------- /openxr_action_map.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/openxr_action_map.tres -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msub2/godot-webxr-template/HEAD/project.godot --------------------------------------------------------------------------------