switch to tab indentation

This commit is contained in:
Crispy 2021-05-16 15:30:07 +02:00
parent 31b6e199ff
commit 3d3c13869b
8 changed files with 139 additions and 139 deletions

View file

@ -2,8 +2,8 @@ extends Label
func _ready() -> void:
pass
pass
func _process(delta: float) -> void:
if delta > 0:
text = "Overlay FPS: " + str(round(1/delta))
if delta > 0:
text = "Overlay FPS: " + str(round(1/delta))

View file

@ -2,16 +2,16 @@ extends Label
func _ready() -> void:
pass
pass
func _process(delta: float) -> void:
_update_time()
_update_time()
func _update_time():
var h = str(OS.get_time().hour)
var m = str(OS.get_time().minute)
h = h if len(h) == 2 else "0" + h
m = m if len(m) == 2 else "0" + m
text = h + ":" + m
var h = str(OS.get_time().hour)
var m = str(OS.get_time().minute)
h = h if len(h) == 2 else "0" + h
m = m if len(m) == 2 else "0" + m
text = h + ":" + m