godot/modules/gdscript/tests/scripts/completion/argument_options/play_inferred.gd
Pablo Andres Fuente b725a9f285
Fix SCRIPT ERROR/ERROR/WARNING on test output
Also "fixing" some GDScript completion tests which
where named wrongly.

(cherry picked from commit 5775d29ad8)
2025-03-12 14:59:04 +01:00

7 lines
91 B
GDScript

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