Skip to content

Commit

Permalink
translate input dialog title and increasing font size
Browse files Browse the repository at this point in the history
  • Loading branch information
d3cryptofc committed May 16, 2023
1 parent 5dd14ad commit 6b5be51
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions scenes/input_dialog.tscn
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
[gd_scene load_steps=2 format=2]
[gd_scene load_steps=5 format=2]

[ext_resource path="res://scripts/input_dialog.gd" type="Script" id=1]
[ext_resource path="res://fonts/cabin-regular.ttf" type="DynamicFontData" id=2]

[sub_resource type="DynamicFont" id=1]
size = 22
font_data = ExtResource( 2 )

[sub_resource type="DynamicFont" id=2]
size = 30
font_data = ExtResource( 2 )

[node name="InputDialog" type="WindowDialog"]
visible = true
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 816.0
margin_top = 446.0
margin_right = -826.0
margin_bottom = -591.0
window_title = "Please enter a value:"
margin_left = 862.618
margin_top = 502.0
margin_right = -468.382
margin_bottom = -517.0
custom_fonts/title_font = SubResource( 1 )
window_title = "Por favor, insira um valor abaixo:"
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
Expand All @@ -18,6 +29,7 @@ __meta__ = {
[node name="LineEdit" type="LineEdit" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
custom_fonts/font = SubResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
Expand Down

0 comments on commit 6b5be51

Please sign in to comment.