new repo who this

This commit is contained in:
2026-06-17 15:28:56 -07:00
commit 63a2a11871
561 changed files with 38648 additions and 0 deletions
@@ -0,0 +1,32 @@
class_name Grabber
## Grabber Class
##
## This class contains relevant information for a grabber including any
## assocated pickup, controller, and hand nodes.
## Grabber node
var by : Node3D
## Pickup associated with the grabber
var pickup : XRToolsFunctionPickup
## Controller associated with the grabber
var controller : XRController3D
## Hand associated with the grabber
var hand : XRToolsHand
## Collision hand associated with the grabber
var collision_hand : XRToolsCollisionHand
## Initialize the grabber
func _init(p_by : Node3D) -> void:
by = p_by
pickup = p_by as XRToolsFunctionPickup
controller = pickup.get_controller() if pickup else null
if controller:
hand = XRToolsHand.find_instance(controller)
collision_hand = XRToolsCollisionHand.find_instance(controller)