GDScript: Fix getting type from PropertyInfo for Variant arguments

This commit is contained in:
Dmitrii Maganov
2023-01-12 16:47:06 +02:00
parent 75515e4303
commit 5980abbcec
6 changed files with 16 additions and 20 deletions
@@ -0,0 +1,6 @@
class Check extends Node:
func _set(_property: StringName, _value: Variant) -> bool:
return true
func test() -> void:
print('OK')
@@ -0,0 +1,2 @@
GDTEST_OK
OK