Files
puzzle-quest/scenes/UI/About.tscn
T

58 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-05-08 13:22:37 +02:00
[gd_scene load_steps=2 format=2]
2021-05-08 12:51:30 +02:00
2021-05-08 15:54:58 +02:00
[sub_resource type="GDScript" id=1]
script/source = "extends Node
func _ready():
2021-05-09 23:41:47 +02:00
$CenterContainer/VBoxContainer/LeadDev.text = tr(\"ABOUT_LEAD_DEV\")
$CenterContainer/VBoxContainer/LeadArtist.text = tr(\"ABOUT_LEAD_ARTIST\")
$CenterContainer/VBoxContainer/Sources.text = tr(\"ABOUT_SOURCE_GAME\")
2021-05-08 15:54:58 +02:00
"
2021-05-08 13:22:37 +02:00
[node name="About" type="Node"]
2021-05-08 15:54:58 +02:00
script = SubResource( 1 )
2021-05-08 13:22:37 +02:00
2021-05-09 23:41:47 +02:00
[node name="CenterContainer" type="CenterContainer" parent="."]
margin_left = 150.0
margin_right = 1024.0
margin_bottom = 600.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer"]
margin_left = 210.0
margin_top = 275.0
margin_right = 663.0
margin_bottom = 325.0
alignment = 1
[node name="LeadDev" type="Label" parent="CenterContainer/VBoxContainer"]
margin_right = 453.0
margin_bottom = 14.0
text = "Lead Develop : GRem -- VAILLANT Jérémy"
align = 1
2021-05-08 13:22:37 +02:00
__meta__ = {
"_edit_use_anchors_": false
}
2021-05-09 23:41:47 +02:00
[node name="LeadArtist" type="Label" parent="CenterContainer/VBoxContainer"]
margin_top = 18.0
margin_right = 453.0
margin_bottom = 32.0
2021-05-08 13:22:37 +02:00
text = "Lead Artist : Stilobique -- VAILLANT Aurelien"
2021-05-09 23:41:47 +02:00
align = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Sources" type="Label" parent="CenterContainer/VBoxContainer"]
margin_top = 36.0
margin_right = 453.0
margin_bottom = 50.0
text = "Source code of game : https://dev.stilobique.com/Athena/game-source"
align = 1
2021-05-08 12:51:30 +02:00
__meta__ = {
"_edit_use_anchors_": false
}