Format files using GDScript Toolkit

https://github.com/Scony/godot-gdscript-toolkit
This commit is contained in:
Leroy Hopson 2021-05-26 10:39:48 +07:00 committed by Leroy Hopson
parent a0237bb5d5
commit f43149f204
10 changed files with 64 additions and 64 deletions

View file

@ -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.