56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
[gd_scene load_steps=4 format=2]
|
|
|
|
[ext_resource path="res://scenes/temperature_display/temperature_display.gd" type="Script" id=1]
|
|
[ext_resource path="res://assets/font/resource/temperature_bold.tres" type="DynamicFont" id=2]
|
|
[ext_resource path="res://assets/font/resource/temperature_normal.tres" type="DynamicFont" id=3]
|
|
|
|
[node name="temperature_display" type="HBoxContainer"]
|
|
margin_right = 40.0
|
|
margin_bottom = 40.0
|
|
custom_constants/separation = -2
|
|
alignment = 1
|
|
script = ExtResource( 1 )
|
|
__meta__ = {
|
|
"_edit_horizontal_guides_": [ 143.0 ]
|
|
}
|
|
degrees_fahrenheit = 32.0
|
|
|
|
[node name="celsius" type="Label" parent="."]
|
|
margin_top = 2.0
|
|
margin_right = 18.0
|
|
margin_bottom = 38.0
|
|
custom_fonts/font = ExtResource( 2 )
|
|
text = "?"
|
|
|
|
[node name="degrees" type="Label" parent="."]
|
|
margin_left = 16.0
|
|
margin_top = 2.0
|
|
margin_right = 45.0
|
|
margin_bottom = 38.0
|
|
custom_fonts/font = ExtResource( 3 )
|
|
text = "°C"
|
|
|
|
[node name="slash" type="Label" parent="."]
|
|
margin_left = 43.0
|
|
margin_top = 2.0
|
|
margin_right = 75.0
|
|
margin_bottom = 38.0
|
|
custom_fonts/font = ExtResource( 3 )
|
|
text = " / "
|
|
|
|
[node name="fahrenheit" type="Label" parent="."]
|
|
margin_left = 73.0
|
|
margin_top = 2.0
|
|
margin_right = 91.0
|
|
margin_bottom = 38.0
|
|
custom_fonts/font = ExtResource( 2 )
|
|
text = "?"
|
|
|
|
[node name="degrees2" type="Label" parent="."]
|
|
margin_left = 89.0
|
|
margin_top = 2.0
|
|
margin_right = 118.0
|
|
margin_bottom = 38.0
|
|
custom_fonts/font = ExtResource( 3 )
|
|
text = "°F"
|