first version of EU AI Act game

This commit is contained in:
Anna Hiemenz
2026-05-26 21:46:46 +02:00
commit d370249649
1735 changed files with 79828 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
extends Node3D
@export var balloon_resource: String = "res://Resources/meshes/dog.tres"
signal balloon_chosen
func _ready() -> void:
$Balloon_model.mesh = load(balloon_resource)
func _on_area_3d_body_entered(body: Node3D) -> void:
if not body.is_in_group("throwable") and not body is Player:
return
balloon_chosen.emit(balloon_resource)
func set_mesh(mesh: String):
$Balloon_model.mesh = load(mesh)