Godot Version
Godot 4.2.1
Question
I have this script :
var event_list : Dictionary = manager.get_event_list()
var event : EventScript = event_list[event_id]
var property_list = event.get_property_list()
for data in property_list :
var label = Label.new()
label.text = str(event.get(data.name))
root.add_child(label)
When I run it the data in property_list not only show the properties in EventScript but also Resource and RefCounted. How can I only capture properties in EventScript ?