1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00
Files
godot/modules/gdscript/tests/scripts/completion/argument_options/play_inferred.gd
Pablo Andres Fuente 5775d29ad8 Fix SCRIPT ERROR/ERROR/WARNING on test output
Also "fixing" some GDScript completion tests which
where named wrongly.
2025-03-06 13:44:48 +01:00

8 lines
91 B
GDScript

extends Node
@onready var anim := $AnimationPlayer
func test():
anim.play()
pass