This commit is contained in:
Spencer Killen 2024-06-06 17:07:31 -06:00
parent df09636af9
commit c38c9cbb4b
Signed by: sjkillen
GPG Key ID: 3AF3117BA6FBB75B
2 changed files with 24 additions and 2 deletions

View File

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

View File

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