add new scene, bees, beehive picking, suit picking wip

This commit is contained in:
sharpoff
2026-01-20 11:56:54 +09:00
parent 49d7e22132
commit bbd3f54bc9
164 changed files with 36561 additions and 1792 deletions

View File

@@ -1,13 +1,9 @@
extends Node3D
@tool
extends XRToolsStartXR
#signal focus_lost
#signal focus_gained
#signal pose_recentered
var collector_count: int = 0
func _ready():
var interface = XRServer.find_interface("OpenXR")
if interface and interface.initialize():
# turn off v-sync
DisplayServer.window_set_vsync_mode(DisplayServer.VSYNC_DISABLED)
get_viewport().use_xr = true
func _on_collector_collected(body: Node3D) -> void:
body.free()
print('something collected (' + str(collector_count) + ')')
collector_count += 1