diff --git a/default_env.tres b/default_env.tres index 98f26a7..20207a4 100644 --- a/default_env.tres +++ b/default_env.tres @@ -1,5 +1,7 @@ [gd_resource type="Environment" load_steps=2 format=2] + [sub_resource type="ProceduralSky" id=1] + [resource] background_mode = 2 background_sky = SubResource( 1 ) diff --git a/project.godot b/project.godot index a0952ac..14dcb45 100644 --- a/project.godot +++ b/project.godot @@ -11,6 +11,7 @@ config_version=4 [application] config/name="Athena-Hidden-Object" +run/main_scene="res://scenes/main.tscn" config/icon="res://icon.png" [physics] @@ -19,5 +20,4 @@ common/enable_pause_aware_picking=true [rendering] -quality/driver/driver_name="GLES3" environment/default_environment="res://default_env.tres" diff --git a/scenes/main.tscn b/scenes/main.tscn new file mode 100644 index 0000000..793627f --- /dev/null +++ b/scenes/main.tscn @@ -0,0 +1,42 @@ +[gd_scene format=2] + +[node name="Main" type="Node2D"] + +[node name="Grid" type="GridContainer" parent="."] +margin_left = -1.33484 +margin_right = 1022.67 +margin_bottom = 600.0 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Title" type="Label" parent="Grid"] +margin_right = 151.0 +margin_bottom = 14.0 +text = "Athena - Hidden Object" +align = 1 +valign = 1 + +[node name="New" type="LinkButton" parent="Grid"] +margin_top = 18.0 +margin_right = 151.0 +margin_bottom = 32.0 +text = "Nouveau" + +[node name="Continue" type="LinkButton" parent="Grid"] +margin_top = 36.0 +margin_right = 151.0 +margin_bottom = 50.0 +text = "Reprendre" + +[node name="About" type="LinkButton" parent="Grid"] +margin_top = 54.0 +margin_right = 151.0 +margin_bottom = 68.0 +text = "Credit" + +[node name="Quit" type="LinkButton" parent="Grid"] +margin_top = 72.0 +margin_right = 151.0 +margin_bottom = 86.0 +text = "Quitter"