You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fix autocompletion of static methods in built-in types in GDScript
This commit is contained in:
@@ -1146,7 +1146,7 @@ public:
|
||||
COMPLETION_ASSIGN, // Assignment based on type (e.g. enum values).
|
||||
COMPLETION_ATTRIBUTE, // After id.| to look for members.
|
||||
COMPLETION_ATTRIBUTE_METHOD, // After id.| to look for methods.
|
||||
COMPLETION_BUILT_IN_TYPE_CONSTANT, // Constants inside a built-in type (e.g. Color.blue).
|
||||
COMPLETION_BUILT_IN_TYPE_CONSTANT_OR_STATIC_METHOD, // Constants inside a built-in type (e.g. Color.BLUE) or static methods (e.g. Color.html).
|
||||
COMPLETION_CALL_ARGUMENTS, // Complete with nodes, input actions, enum values (or usual expressions).
|
||||
// TODO: COMPLETION_DECLARATION, // Potential declaration (var, const, func).
|
||||
COMPLETION_GET_NODE, // Get node with $ notation.
|
||||
|
||||
Reference in New Issue
Block a user