Forráskód Böngészése

Put the title closer of origin and hide at game start

Add a mother node `Ui` as well.
DricomDragon 4 éve
szülő
commit
330aa195b8
2 módosított fájl, 14 hozzáadás és 5 törlés
  1. 1 0
      Game.gd
  2. 13 5
      Game.tscn

+ 1 - 0
Game.gd

@@ -21,6 +21,7 @@ var _players_connected = false
 
 onready var levelSwap = $LevelSwap
 onready var hub = $Hub
+onready var ui = $Ui
 
 func _ready():
 	# Prepare levels

+ 13 - 5
Game.tscn

@@ -10,7 +10,6 @@ script = ExtResource( 3 )
 levelNames = [ "Square", "Lab", "Focus", "Atom", "template" ]
 
 [node name="MainCamera" type="Camera2D" parent="."]
-position = Vector2( 500, -500 )
 current = true
 smoothing_enabled = true
 script = ExtResource( 1 )
@@ -19,10 +18,18 @@ script = ExtResource( 1 )
 wait_time = 3.0
 one_shot = true
 
-[node name="Title" type="Label" parent="."]
-margin_top = -700.0
-margin_right = 1000.0
-margin_bottom = -686.0
+[node name="Ui" type="Control" parent="."]
+margin_right = 40.0
+margin_bottom = 40.0
+__meta__ = {
+"_edit_use_anchors_": false
+}
+
+[node name="Title" type="Label" parent="Ui"]
+margin_left = -502.476
+margin_top = -284.577
+margin_right = 497.524
+margin_bottom = -270.577
 text = "Mighty Liners Reborn"
 align = 1
 __meta__ = {
@@ -33,4 +40,5 @@ __meta__ = {
 
 [node name="LevelSwap" type="Tween" parent="."]
 script = ExtResource( 2 )
+[connection signal="timeout" from="StartTimer" to="Ui" method="hide"]
 [connection signal="timeout" from="StartTimer" to="." method="_on_start_game"]