GDScript: Fix groups and categories been seen as members
This commit is contained in:
parent
e0de3573f3
commit
6f2a8434c6
3 changed files with 17 additions and 1 deletions
|
|
@ -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())
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
GDTEST_OK
|
||||
Not shadowed <Resource#-9223371975785708326>
|
||||
Not shadowed <RefCounted#-9223371975768931110>
|
||||
Loading…
Add table
Add a link
Reference in a new issue