adds the game

This commit is contained in:
2026-08-14 18:01:56 -04:00
commit 9edadb3ce2
563 changed files with 39331 additions and 0 deletions
@@ -0,0 +1,14 @@
@tool
class_name XRToolsWindArea
extends Area3D
## Vector (direction and magnitude) of wind in this area
@export var wind_vector : Vector3 = Vector3.ZERO
## Wind drag factor
@export var drag : float = 1.0
# Add support for is_xr_class on XRTools classes
func is_xr_class(xr_name: String) -> bool:
return xr_name == "XRToolsWindArea"