mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-03 12:04:24 +02:00
Format files using GDScript Toolkit
https://github.com/Scony/godot-gdscript-toolkit
This commit is contained in:
parent
a0237bb5d5
commit
f43149f204
10 changed files with 64 additions and 64 deletions
|
@ -1,14 +1,13 @@
|
|||
extends Animation
|
||||
|
||||
|
||||
signal data_written(data)
|
||||
signal data_read(data)
|
||||
|
||||
export(int) var version: int = 2
|
||||
export (int) var version: int = 2
|
||||
# Initial terminal width (number of columns).
|
||||
export(int) var width: int
|
||||
export (int) var width: int
|
||||
# Initial terminal height (number of rows).
|
||||
export(int) var height: int
|
||||
export (int) var height: int
|
||||
|
||||
|
||||
func get_class() -> String:
|
||||
|
@ -20,4 +19,4 @@ func is_class(name) -> bool:
|
|||
|
||||
|
||||
func _init():
|
||||
step = 0.01 # Parent override.
|
||||
step = 0.01 # Parent override.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue