From c38c9cbb4b481957c54e894ca4fc32efbd59f299 Mon Sep 17 00:00:00 2001 From: Spencer Killen Date: Thu, 6 Jun 2024 17:07:31 -0600 Subject: [PATCH] fmod --- project.godot | 2 +- tests/foo.tscn | 24 +++++++++++++++++++++++- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/project.godot b/project.godot index f207e49..27b2f0f 100644 --- a/project.godot +++ b/project.godot @@ -39,7 +39,7 @@ FmodManager="*res://addons/fmod/FmodManager.gd" [editor_plugins] -enabled=PackedStringArray("res://addons/fmod/plugin.cfg", "res://addons/godot_gltf2meshlib-6391ec247cc04f5fe89243b24fad68bc2ed2a96b/addons/gltf2meshlib/plugin.cfg") +enabled=PackedStringArray("res://addons/godot_gltf2meshlib-6391ec247cc04f5fe89243b24fad68bc2ed2a96b/addons/gltf2meshlib/plugin.cfg") [filesystem] diff --git a/tests/foo.tscn b/tests/foo.tscn index f6493cf..94dd4da 100644 --- a/tests/foo.tscn +++ b/tests/foo.tscn @@ -1,8 +1,30 @@ -[gd_scene load_steps=2 format=3 uid="uid://3ksclx7iiepo"] +[gd_scene load_steps=3 format=3 uid="uid://3ksclx7iiepo"] + +[sub_resource type="GDScript" id="GDScript_tqnee"] +script/source = "extends Node3D + +var stuff := Dictionary() +signal more_stuff + +func _ready(): + var v := Node.new() + stuff[v] = null + more_stuff.connect(v.get_tree) + v.free() + await Engine.get_main_loop().process_frame + print(stuff.keys()) + print(more_stuff.get_connections()) + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta): + pass +" [sub_resource type="MeshLibrary" id="MeshLibrary_8y7oa"] [node name="Foo" type="Node3D"] +script = SubResource("GDScript_tqnee") [node name="GridMap" type="GridMap" parent="."] mesh_library = SubResource("MeshLibrary_8y7oa")