You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: script_checking/error_database.csv
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ It has two possible causes:
52
52
1. You used the class name in the class itself.
53
53
2. Your code refers to another class that refers to this class, causing an endless reference cycle.
54
54
55
-
Either way, due to how GDScript works in Godot 3, unfortunately,you cannot do this. Godot 4 should solve this problem, but you need to work around it in the meantime.","Erase the type hint in the error line, and the problem should disappear.
55
+
Either way, due to how GDScript works in Godot 3, unfortunately,you cannot do this. Godot 4 should solve this problem, but you need to work around it in the meantime.","Erase the type hint in the error line, and the problem should disappear.
56
56
57
57
At GDQuest, when we face this error, we remove the type hints on lines causing cyclic references. It solves the problem in the vast majority of cases."
58
58
INVALID_INDENTATION,"The indentation of your code (the number of tab characters at the start of the line) is incorrect.
@@ -74,7 +74,7 @@ If it says ""unterminated,"" you are missing some character at the end of an exp
74
74
UNEXPECTED_CHARACTER_IN_KEYWORD,"This error tells you that you are missing a parenthesis (or sometimes a comma or a path).
75
75
76
76
Three keywords in GDScript work like function calls and require parentheses: [code]yield()[/code], [code]preload()[/code], and [code]assert()[/code].","To address the error, you want to add the missing opening parenthesis, the closing parenthesis, or the comma."
77
-
UNEXPECTED_CHARACTER_IN_EXPORT_HINT,"This error tells you you are missing some parenthesis, a comma, or some value in your export hint.",You need to read the error message and add the missing character or value it requests.
77
+
UNEXPECTED_CHARACTER_IN_EXPORT_HINT,"This error tells you are missing some parenthesis, a comma, or some value in your export hint.",You need to read the error message and add the missing character or value it requests.
78
78
MISPLACED_IDENTIFIER,"This error happens in several cases:
79
79
80
80
1. You wrote an identifier (variable or function name) in the wrong place.
0 commit comments