GDScript: Avoid calling non-static methods on native classes

This commit is contained in:
George Marques
2023-01-28 20:33:01 -03:00
parent 218bef90af
commit aee7b7363b
3 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
# https://github.com/godotengine/godot/issues/66675
func test():
example(Node2D)
func example(thing):
print(thing.has_method('asdf'))

View File

@@ -0,0 +1,6 @@
GDTEST_RUNTIME_ERROR
>> SCRIPT ERROR
>> on function: example()
>> runtime/errors/non_static_method_call_on_native_class.gd
>> 6
>> Invalid call. Nonexistent function 'has_method' in base 'Node2D'.