You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Autocompletion: Add support for global enums
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
[output]
|
||||
include=[
|
||||
{"display": "DrawMode",
|
||||
"location": 256},
|
||||
{"display": "Anchor",
|
||||
"location": 257},
|
||||
{"display": "TextureRepeat",
|
||||
"location": 258},
|
||||
]
|
||||
@@ -0,0 +1,4 @@
|
||||
extends Control
|
||||
|
||||
func _ready():
|
||||
var t: BaseButton.➡
|
||||
@@ -0,0 +1,6 @@
|
||||
[output]
|
||||
include=[
|
||||
{"display": "Key"},
|
||||
{"display": "KeyLocation"},
|
||||
{"display": "Error"},
|
||||
]
|
||||
@@ -0,0 +1,5 @@
|
||||
extends Object
|
||||
|
||||
func test():
|
||||
var t = Ke➡
|
||||
pass
|
||||
@@ -0,0 +1,6 @@
|
||||
[output]
|
||||
exclude=[
|
||||
{"display": "Key"},
|
||||
{"display": "KeyLocation"},
|
||||
{"display": "Error"},
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
extends Ke➡
|
||||
@@ -0,0 +1,6 @@
|
||||
[output]
|
||||
include=[
|
||||
{"display": "Key"},
|
||||
{"display": "KeyLocation"},
|
||||
{"display": "Error"},
|
||||
]
|
||||
@@ -0,0 +1,5 @@
|
||||
extends Control
|
||||
|
||||
func _ready():
|
||||
var t: Ke➡
|
||||
pass
|
||||
@@ -0,0 +1,5 @@
|
||||
[output]
|
||||
include=[
|
||||
{"display": "KEY_A"},
|
||||
{"display": "KEY_B"},
|
||||
]
|
||||
@@ -0,0 +1,5 @@
|
||||
extends Control
|
||||
|
||||
func test():
|
||||
Key.➡
|
||||
pass
|
||||
Reference in New Issue
Block a user