Reformat existing gdscript code

This commit is contained in:
Leroy Hopson 2022-06-04 11:27:46 +07:00
parent 0db7801d45
commit 38c5818b2c
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
9 changed files with 269 additions and 108 deletions

View file

@ -1,9 +1,9 @@
extends "res://addons/godot_xterm/terminal.gd"
export (String) var exec_path := "bash"
export (String) var socat_path := "socat" # E.g. /usr/bin/socat
export (int) var port := 2023
export (bool) var verbose := false
export(String) var exec_path := "bash"
export(String) var socat_path := "socat" # E.g. /usr/bin/socat
export(int) var port := 2023
export(bool) var verbose := false
var _timeout = 30
var _pid: int