You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
GDScript: Fix regression with native signal not found
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user