Cleanup
This commit is contained in:
@ -12,7 +12,7 @@ func _enter_tree():
|
||||
reconnect = %Reconnect
|
||||
network = %Network
|
||||
|
||||
func _process(_delta):
|
||||
func _process(_delta: float):
|
||||
var new_focus := get_viewport().gui_get_focus_owner()
|
||||
|
||||
if new_focus && new_focus.name != "Unfocus":
|
||||
|
@ -6,7 +6,7 @@ func _ready():
|
||||
focus_exited.connect(on_focus_exited)
|
||||
text_submitted.connect(on_text_submitted)
|
||||
|
||||
func _unhandled_key_input(event):
|
||||
func _unhandled_key_input(event: InputEvent):
|
||||
if UI.focus:
|
||||
return
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
extends DebugLabel
|
||||
|
||||
func _process(_delta):
|
||||
func _process(_delta: float):
|
||||
text = str(Engine.get_frames_per_second())
|
||||
|
@ -5,7 +5,7 @@ extends DebugLabel
|
||||
@export var precision := 0.1
|
||||
@export var suffix := ""
|
||||
|
||||
func _process(_delta):
|
||||
func _process(_delta: float):
|
||||
match monitor:
|
||||
Performance.Monitor.TIME_PROCESS, Performance.Monitor.TIME_PHYSICS_PROCESS:
|
||||
text = str(snapped(Performance.get_monitor(monitor) * 1000, 0.1)) + " ms"
|
||||
|
@ -1,6 +1,6 @@
|
||||
extends DebugLabel
|
||||
|
||||
func _process(_delta):
|
||||
func _process(_delta: float):
|
||||
if Global.player == null:
|
||||
return
|
||||
|
||||
|
@ -3,7 +3,7 @@ extends DebugLabel
|
||||
var keys := StateComponent.State.keys()
|
||||
var state: StateComponent
|
||||
|
||||
func _process(_delta):
|
||||
func _process(_delta: float):
|
||||
if !Global.player:
|
||||
return
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
extends DebugLabel
|
||||
|
||||
func _process(_delta):
|
||||
func _process(_delta: float):
|
||||
if Global.player == null:
|
||||
return
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
extends Control
|
||||
|
||||
func _unhandled_input(event):
|
||||
func _unhandled_input(event: InputEvent):
|
||||
if event.is_action_pressed("menu"):
|
||||
visible = !visible
|
Reference in New Issue
Block a user