GDScript: Fix regression with native signal not found
This commit is contained in:
parent
dca12c2e54
commit
f19377160c
3 changed files with 52 additions and 31 deletions
|
|
@ -0,0 +1,14 @@
|
|||
# GH-80157
|
||||
|
||||
extends Node
|
||||
|
||||
func f():
|
||||
pass
|
||||
|
||||
signal s()
|
||||
|
||||
func test():
|
||||
print(f)
|
||||
print(s)
|
||||
print(get_child)
|
||||
print(ready)
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
GDTEST_OK
|
||||
Node::f
|
||||
Node::[signal]s
|
||||
Node::get_child
|
||||
Node::[signal]ready
|
||||
Loading…
Add table
Add a link
Reference in a new issue