Core: Fix built-in enum constant bindings

This commit is contained in:
Danil Alexeev
2024-11-22 14:03:21 +03:00
parent f952bfe998
commit 03b05cf9ac
24 changed files with 279 additions and 109 deletions

View File

@ -0,0 +1,2 @@
func test():
print(Vector3.Axis)

View File

@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Type "Axis" in base "Vector3" cannot be used on its own.

View File

@ -0,0 +1,2 @@
func test():
print(Variant.Operator)

View File

@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Type "Operator" in base "Variant" cannot be used on its own.

View File

@ -0,0 +1,2 @@
func test():
print(Node.ProcessMode)

View File

@ -0,0 +1,2 @@
GDTEST_ANALYZER_ERROR
Type "ProcessMode" in base "Node" cannot be used on its own.