initial commit, 4.5 stable
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled

This commit is contained in:
2025-09-16 20:46:46 -04:00
commit 9d30169a8d
13378 changed files with 7050105 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
[input]
scene="res://completion/get_node/get_node.tscn"
[output]
include=[
; Node
{"display": "add_child(…)"},
{"display": "owner"},
{"display": "child_entered_tree"},
; GDScript: class_a.notest.gd
{"display": "property_of_a"},
{"display": "func_of_a()"},
{"display": "signal_of_a"},
]

View File

@@ -0,0 +1,5 @@
extends Node
func a():
$A.
pass

View File

@@ -0,0 +1,14 @@
[input]
scene="res://completion/get_node/get_node.tscn"
[output]
include=[
; Node
{"display": "add_child(…)"},
{"display": "owner"},
{"display": "child_entered_tree"},
; AnimationPlayer
{"display": "autoplay"},
{"display": "play(…)"},
{"display": "animation_changed"},
]

View File

@@ -0,0 +1,5 @@
extends Node
func a():
$AnimationPlayer.
pass

View File

@@ -0,0 +1,9 @@
[input]
scene="res://completion/get_node/get_node.tscn"
[output]
include=[
{"display": "%UniqueA"},
]
exclude=[
{"display": "\"%UniqueA\""},
]

View File

@@ -0,0 +1,5 @@
extends Node
func a():
$
pass

View File

@@ -0,0 +1,14 @@
[input]
scene="res://completion/get_node/get_node.tscn"
[output]
include=[
; Node
{"display": "add_child(…)"},
{"display": "owner"},
{"display": "child_entered_tree"},
; GDScript: class_a.notest.gd
{"display": "property_of_a"},
{"display": "func_of_a()"},
{"display": "signal_of_a"},
]

View File

@@ -0,0 +1,5 @@
extends Node
func a():
%UniqueA.
pass

View File

@@ -0,0 +1,14 @@
[input]
scene="res://completion/get_node/get_node.tscn"
[output]
include=[
; Node
{"display": "add_child(…)"},
{"display": "owner"},
{"display": "child_entered_tree"},
; AnimationPlayer
{"display": "autoplay"},
{"display": "play(…)"},
{"display": "animation_changed"},
]

View File

@@ -0,0 +1,5 @@
extends Node
func a():
%UniqueAnimationPlayer.
pass