GDScript: Fix groups and categories been seen as members

This commit is contained in:
George Marques
2023-02-24 10:03:12 -03:00
parent e0de3573f3
commit 6f2a8434c6
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
# https://github.com/godotengine/godot/issues/73843
extends RefCounted
@export_group("Resource")
@export_category("RefCounted")
func test():
prints("Not shadowed", Resource.new())
prints("Not shadowed", RefCounted.new())

View File

@@ -0,0 +1,3 @@
GDTEST_OK
Not shadowed <Resource#-9223371975785708326>
Not shadowed <RefCounted#-9223371975768931110>