tweak generating messages

This commit is contained in:
Teatov 2025-07-31 13:19:07 +10:00
parent ab4d3a34d4
commit 1b596a4a68

View File

@ -91,7 +91,7 @@ func emit_key_press(game_key: GameKey, event: InputEventKey) -> void:
#region key generation
func _generate_keys(layout_rows: Array[Array]) -> void:
print("generating keys... ", LayoutConfig.current_layout.name())
print("generating keys... '%s'" % LayoutConfig.current_layout.name())
_set_gap_to_size_ratio()
for row: Array[KeyProps] in layout_rows:
@ -207,7 +207,7 @@ func _swap_layout(kp_key: Key) -> void:
func _regenerate_keys(layout_rows: Array[Array]) -> void:
print("REgenerating keys... ", LayoutConfig.current_layout.name())
print("REgenerating keys... '%s'" % LayoutConfig.current_layout.name())
var current_keys: Dictionary[Vector2i, Array]