Files
Babushka/addons/languagetool/testing/api_test.gd
T
2025-08-14 06:30:17 +02:00

9 lines
222 B
GDScript

@tool
extends EditorScript
func _run():
var api = LanguageToolApiWrapper.new()
EditorInterface.get_base_control().add_child(api)
var result = api.check("Hello this is a santence how are you")
print(result.matches[0])