You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@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])
|