Browse Source

:lipstick: Ajuste la position du nombre de balles restantes

- Pour eviter de coller le bord gauche de l'ecran
- Descend un peu pour eviter de cacher la raquette
DricomDragon 8 months ago
parent
commit
1323eab250

+ 2 - 2
godot/composants/interface/stock/stock.gd

@@ -3,7 +3,7 @@ extends Control
 
 var taille_stock_balles: int = 42
 
-@onready var stock_balles: Label = $StockBalles
+@onready var nombre_balles: Label = %NombreBalles
 
 
 func _ready() -> void:
@@ -14,7 +14,7 @@ func _montrer_taille_stock_balles() -> void:
 	if not is_node_ready():
 		return
 
-	stock_balles.text = str(taille_stock_balles)
+	nombre_balles.text = str(taille_stock_balles)
 
 
 func _quand_nombre_balles_change(nb_balles: int) -> void:

+ 16 - 4
godot/composants/interface/stock/stock.tscn

@@ -1,6 +1,7 @@
-[gd_scene load_steps=2 format=3 uid="uid://ds3j5rjhys4xf"]
+[gd_scene load_steps=3 format=3 uid="uid://ds3j5rjhys4xf"]
 
 [ext_resource type="Script" path="res://composants/interface/stock/stock.gd" id="1_ikrye"]
+[ext_resource type="Texture2D" uid="uid://bbpkc5fx4p34l" path="res://composants/objets/balle/ball_main0001.png" id="2_shrha"]
 
 [node name="Stock" type="Control"]
 layout_mode = 3
@@ -11,12 +12,23 @@ grow_horizontal = 2
 grow_vertical = 2
 script = ExtResource("1_ikrye")
 
-[node name="StockBalles" type="Label" parent="."]
+[node name="StockBalles" type="HBoxContainer" parent="."]
 layout_mode = 1
 anchors_preset = 2
 anchor_top = 1.0
 anchor_bottom = 1.0
-offset_top = -23.0
-offset_right = 40.0
+offset_left = 4.0
+offset_top = -16.0
+offset_right = 47.0
+offset_bottom = 2.0
 grow_vertical = 0
+
+[node name="NombreBalles" type="Label" parent="StockBalles"]
+unique_name_in_owner = true
+layout_mode = 2
 text = "42"
+
+[node name="IconeBalle" type="TextureRect" parent="StockBalles"]
+layout_mode = 2
+texture = ExtResource("2_shrha")
+stretch_mode = 5