This commit is contained in:
sharpoff
2026-01-14 13:01:37 +09:00
commit 49d7e22132
660 changed files with 41243 additions and 0 deletions

View File

@@ -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"