Refactor network and player goals UI panels
Moved network info UI elements into a dedicated NetworkPanel and updated code references accordingly. Refactored AllPlayerGoals to use individual Panel nodes for each player, improving visibility management and goal UI updates. Enhanced goal synchronization logic to handle dynamic player panels and added safety checks for UI node access.
This commit is contained in:
+144
-55
@@ -364,11 +364,11 @@ func show_arrangement_ui():
|
|||||||
update_playerboard_ui()
|
update_playerboard_ui()
|
||||||
|
|
||||||
func _on_host_pressed():
|
func _on_host_pressed():
|
||||||
$NetworkInfo/NetworkSideDisplay.text = "Server"
|
$NetworkPanel/NetworkInfo/NetworkSideDisplay.text = "Server"
|
||||||
$Menu.visible = false
|
$Menu.visible = false
|
||||||
multiplayer_peer.create_server(PORT)
|
multiplayer_peer.create_server(PORT)
|
||||||
multiplayer.multiplayer_peer = multiplayer_peer
|
multiplayer.multiplayer_peer = multiplayer_peer
|
||||||
$NetworkInfo/UniquePeerID.text = str(multiplayer.get_unique_id())
|
$NetworkPanel/NetworkInfo/UniquePeerID.text = str(multiplayer.get_unique_id())
|
||||||
|
|
||||||
# Generate all goals first
|
# Generate all goals first
|
||||||
preset_goals.clear()
|
preset_goals.clear()
|
||||||
@@ -408,11 +408,11 @@ func sync_preset_goals(goals_list: Array):
|
|||||||
preset_goals = goals_list
|
preset_goals = goals_list
|
||||||
|
|
||||||
func _on_join_pressed():
|
func _on_join_pressed():
|
||||||
$NetworkInfo/NetworkSideDisplay.text = "Client"
|
$NetworkPanel/NetworkInfo/NetworkSideDisplay.text = "Client"
|
||||||
$Menu.visible = false
|
$Menu.visible = false
|
||||||
multiplayer_peer.create_client(ADDRESS, PORT)
|
multiplayer_peer.create_client(ADDRESS, PORT)
|
||||||
multiplayer.multiplayer_peer = multiplayer_peer
|
multiplayer.multiplayer_peer = multiplayer_peer
|
||||||
$NetworkInfo/UniquePeerID.text = str(multiplayer.get_unique_id())
|
$NetworkPanel/NetworkInfo/UniquePeerID.text = str(multiplayer.get_unique_id())
|
||||||
# After connection is established
|
# After connection is established
|
||||||
await get_tree().create_timer(2.0).timeout
|
await get_tree().create_timer(2.0).timeout
|
||||||
rpc_id(1, "request_full_player_sync", multiplayer.get_unique_id())
|
rpc_id(1, "request_full_player_sync", multiplayer.get_unique_id())
|
||||||
@@ -1061,58 +1061,109 @@ func update_board_slot(board_ui: Node, slot_idx: int, value: int):
|
|||||||
9: slot_node.get_node("TileStar").show()
|
9: slot_node.get_node("TileStar").show()
|
||||||
10: slot_node.get_node("TileCoin").show()
|
10: slot_node.get_node("TileCoin").show()
|
||||||
|
|
||||||
|
#func update_all_players_goals():
|
||||||
|
## Only server/host should manage goals display
|
||||||
|
#if not game_started:
|
||||||
|
#return
|
||||||
|
#
|
||||||
|
#var all_players = get_tree().get_nodes_in_group("Players")
|
||||||
|
#all_players.sort_custom(func(a, b):
|
||||||
|
#var a_str = String(a.name).get_slice("@", 0)
|
||||||
|
#var b_str = String(b.name).get_slice("@", 0)
|
||||||
|
#return int(a_str) < int(b_str)
|
||||||
|
#)
|
||||||
|
#
|
||||||
|
## If we're the host, update all goals and sync to clients
|
||||||
|
#if multiplayer.is_server():
|
||||||
|
## Clear all goals first
|
||||||
|
#for player_idx in range(4):
|
||||||
|
#var goals_grid = $AllPlayerGoals.get_child(player_idx)
|
||||||
|
#for slot_idx in range(9):
|
||||||
|
#var slot = goals_grid.get_child(slot_idx)
|
||||||
|
#for tile in ["TileHeart", "TileDiamond", "TileStar", "TileCoin"]:
|
||||||
|
#slot.get_node(tile).hide()
|
||||||
|
#
|
||||||
|
## Update with current goals and gather goals data
|
||||||
|
#var all_goals_data = []
|
||||||
|
#for i in range(min(all_players.size(), 4)):
|
||||||
|
#var player = all_players[i]
|
||||||
|
#if player and player.goals.size() > 0:
|
||||||
|
#_update_player_goals_ui(i, player.goals)
|
||||||
|
#all_goals_data.append({"player_idx": i, "goals": player.goals.duplicate()})
|
||||||
|
#else:
|
||||||
|
#all_goals_data.append({"player_idx": i, "goals": []})
|
||||||
|
#
|
||||||
|
## Sync to clients
|
||||||
|
#rpc("sync_all_goals_to_clients", all_goals_data)
|
||||||
|
|
||||||
func update_all_players_goals():
|
func update_all_players_goals():
|
||||||
# Only server/host should manage goals display
|
|
||||||
if not game_started:
|
if not game_started:
|
||||||
return
|
return
|
||||||
|
|
||||||
var all_players = get_tree().get_nodes_in_group("Players")
|
var all_players = get_tree().get_nodes_in_group("Players")
|
||||||
all_players.sort_custom(func(a, b):
|
all_players.sort_custom(func(a, b):
|
||||||
var a_str = String(a.name).get_slice("@", 0)
|
var a_id = int(String(a.name).get_slice("@", 0))
|
||||||
var b_str = String(b.name).get_slice("@", 0)
|
var b_id = int(String(b.name).get_slice("@", 0))
|
||||||
return int(a_str) < int(b_str)
|
return a_id < b_id
|
||||||
)
|
)
|
||||||
|
|
||||||
# If we're the host, update all goals and sync to clients
|
# Hide all panels first
|
||||||
|
for i in range($AllPlayerGoals.get_child_count()):
|
||||||
|
$AllPlayerGoals.get_child(i).visible = false
|
||||||
|
|
||||||
|
# Update only for connected players (up to number of panels available)
|
||||||
|
var max_panels = $AllPlayerGoals.get_child_count()
|
||||||
|
for i in range(min(all_players.size(), max_panels)):
|
||||||
|
var player = all_players[i]
|
||||||
|
if player and player.goals.size() > 0:
|
||||||
|
$AllPlayerGoals.get_child(i).visible = true
|
||||||
|
_update_player_goals_ui(i, player.goals)
|
||||||
|
|
||||||
|
# Server also syncs to clients
|
||||||
if multiplayer.is_server():
|
if multiplayer.is_server():
|
||||||
# Clear all goals first
|
|
||||||
for player_idx in range(4):
|
|
||||||
var goals_grid = $AllPlayerGoals.get_child(player_idx)
|
|
||||||
for slot_idx in range(9):
|
|
||||||
var slot = goals_grid.get_child(slot_idx)
|
|
||||||
for tile in ["TileHeart", "TileDiamond", "TileStar", "TileCoin"]:
|
|
||||||
slot.get_node(tile).hide()
|
|
||||||
|
|
||||||
# Update with current goals and gather goals data
|
|
||||||
var all_goals_data = []
|
var all_goals_data = []
|
||||||
for i in range(min(all_players.size(), 4)):
|
for i in range(min(all_players.size(), max_panels)):
|
||||||
var player = all_players[i]
|
var player = all_players[i]
|
||||||
if player and player.goals.size() > 0:
|
all_goals_data.append({
|
||||||
_update_player_goals_ui(i, player.goals)
|
"player_idx": i,
|
||||||
all_goals_data.append({"player_idx": i, "goals": player.goals.duplicate()})
|
"goals": player.goals.duplicate() if player else []
|
||||||
else:
|
})
|
||||||
all_goals_data.append({"player_idx": i, "goals": []})
|
|
||||||
|
|
||||||
# Sync to clients
|
|
||||||
rpc("sync_all_goals_to_clients", all_goals_data)
|
rpc("sync_all_goals_to_clients", all_goals_data)
|
||||||
|
|
||||||
|
#@rpc("reliable")
|
||||||
|
#func sync_all_goals_to_clients(all_goals_data: Array):
|
||||||
|
#if not multiplayer.is_server(): # Only clients should process this
|
||||||
|
## Clear all goals first
|
||||||
|
#for player_idx in range(4):
|
||||||
|
#var goals_grid = $AllPlayerGoals.get_child(player_idx)
|
||||||
|
#for slot_idx in range(9):
|
||||||
|
#var slot = goals_grid.get_child(slot_idx)
|
||||||
|
#for tile in ["TileHeart", "TileDiamond", "TileStar", "TileCoin"]:
|
||||||
|
#slot.get_node(tile).hide()
|
||||||
|
#
|
||||||
|
## Apply received goals
|
||||||
|
#for goal_data in all_goals_data:
|
||||||
|
#var player_idx = goal_data["player_idx"]
|
||||||
|
#var goals = goal_data["goals"]
|
||||||
|
#if player_idx >= 0 and player_idx < 4 and goals.size() > 0:
|
||||||
|
#_update_player_goals_ui(player_idx, goals)
|
||||||
|
|
||||||
@rpc("reliable")
|
@rpc("reliable")
|
||||||
func sync_all_goals_to_clients(all_goals_data: Array):
|
func sync_all_goals_to_clients(all_goals_data: Array):
|
||||||
if not multiplayer.is_server(): # Only clients should process this
|
if multiplayer.is_server():
|
||||||
# Clear all goals first
|
return # Only clients should process this
|
||||||
for player_idx in range(4):
|
|
||||||
var goals_grid = $AllPlayerGoals.get_child(player_idx)
|
# Hide all panels first
|
||||||
for slot_idx in range(9):
|
for i in range($AllPlayerGoals.get_child_count()):
|
||||||
var slot = goals_grid.get_child(slot_idx)
|
$AllPlayerGoals.get_child(i).visible = false
|
||||||
for tile in ["TileHeart", "TileDiamond", "TileStar", "TileCoin"]:
|
|
||||||
slot.get_node(tile).hide()
|
# Apply received goals
|
||||||
|
for goal_data in all_goals_data:
|
||||||
# Apply received goals
|
var player_idx = goal_data.get("player_idx", -1)
|
||||||
for goal_data in all_goals_data:
|
var goals = goal_data.get("goals", [])
|
||||||
var player_idx = goal_data["player_idx"]
|
if player_idx >= 0 and player_idx < $AllPlayerGoals.get_child_count() and goals.size() > 0:
|
||||||
var goals = goal_data["goals"]
|
$AllPlayerGoals.get_child(player_idx).visible = true
|
||||||
if player_idx >= 0 and player_idx < 4 and goals.size() > 0:
|
_update_player_goals_ui(player_idx, goals)
|
||||||
_update_player_goals_ui(player_idx, goals)
|
|
||||||
|
|
||||||
@rpc("any_peer", "call_local")
|
@rpc("any_peer", "call_local")
|
||||||
func sync_player_goals(player_id: int, goals: Array):
|
func sync_player_goals(player_id: int, goals: Array):
|
||||||
@@ -1126,22 +1177,60 @@ func sync_player_goals(player_id: int, goals: Array):
|
|||||||
update_all_players_goals()
|
update_all_players_goals()
|
||||||
|
|
||||||
# Helper function to update specific player's goals UI
|
# Helper function to update specific player's goals UI
|
||||||
|
#func _update_player_goals_ui(player_idx: int, goals: Array):
|
||||||
|
#var goals_grid = $AllPlayerGoals.get_child(player_idx)
|
||||||
|
#for slot_idx in range(9):
|
||||||
|
#var slot = goals_grid.get_child(slot_idx)
|
||||||
|
#var goal_value = goals[slot_idx] if slot_idx < goals.size() else -1
|
||||||
|
#
|
||||||
|
## Hide all tiles first
|
||||||
|
#for tile in ["TileHeart", "TileDiamond", "TileStar", "TileCoin"]:
|
||||||
|
#slot.get_node(tile).hide()
|
||||||
|
#
|
||||||
|
## Show appropriate tile
|
||||||
|
#match goal_value:
|
||||||
|
#7: slot.get_node("TileHeart").show()
|
||||||
|
#8: slot.get_node("TileDiamond").show()
|
||||||
|
#9: slot.get_node("TileStar").show()
|
||||||
|
#10: slot.get_node("TileCoin").show()
|
||||||
|
# Helper function to update specific player's goals UI
|
||||||
func _update_player_goals_ui(player_idx: int, goals: Array):
|
func _update_player_goals_ui(player_idx: int, goals: Array):
|
||||||
var goals_grid = $AllPlayerGoals.get_child(player_idx)
|
# Safety: ensure player_idx is within bounds of AllPlayerGoals children
|
||||||
|
if player_idx < 0 or player_idx >= $AllPlayerGoals.get_child_count():
|
||||||
|
return
|
||||||
|
|
||||||
|
var panel = $AllPlayerGoals.get_child(player_idx)
|
||||||
|
if not panel.has_node("MarginContainer/Playergoals"):
|
||||||
|
return
|
||||||
|
|
||||||
|
var goals_grid = panel.get_node("MarginContainer/Playergoals")
|
||||||
|
|
||||||
for slot_idx in range(9):
|
for slot_idx in range(9):
|
||||||
|
if slot_idx >= goals_grid.get_child_count():
|
||||||
|
break
|
||||||
|
|
||||||
var slot = goals_grid.get_child(slot_idx)
|
var slot = goals_grid.get_child(slot_idx)
|
||||||
var goal_value = goals[slot_idx] if slot_idx < goals.size() else -1
|
var goal_value = goals[slot_idx] if slot_idx < goals.size() else -1
|
||||||
|
|
||||||
# Hide all tiles first
|
# Hide all goal tiles first
|
||||||
for tile in ["TileHeart", "TileDiamond", "TileStar", "TileCoin"]:
|
for tile_name in ["TileHeart", "TileDiamond", "TileStar", "TileCoin"]:
|
||||||
slot.get_node(tile).hide()
|
if slot.has_node(tile_name):
|
||||||
|
slot.get_node(tile_name).hide()
|
||||||
# Show appropriate tile
|
|
||||||
|
# Show appropriate tile based on goal value
|
||||||
match goal_value:
|
match goal_value:
|
||||||
7: slot.get_node("TileHeart").show()
|
7:
|
||||||
8: slot.get_node("TileDiamond").show()
|
if slot.has_node("TileHeart"):
|
||||||
9: slot.get_node("TileStar").show()
|
slot.get_node("TileHeart").show()
|
||||||
10: slot.get_node("TileCoin").show()
|
8:
|
||||||
|
if slot.has_node("TileDiamond"):
|
||||||
|
slot.get_node("TileDiamond").show()
|
||||||
|
9:
|
||||||
|
if slot.has_node("TileStar"):
|
||||||
|
slot.get_node("TileStar").show()
|
||||||
|
10:
|
||||||
|
if slot.has_node("TileCoin"):
|
||||||
|
slot.get_node("TileCoin").show()
|
||||||
|
|
||||||
@rpc("any_peer")
|
@rpc("any_peer")
|
||||||
func request_goals_from_server(requesting_peer_id: int):
|
func request_goals_from_server(requesting_peer_id: int):
|
||||||
|
|||||||
+3586
-217
@@ -62,13 +62,33 @@ current = true
|
|||||||
fov = 35.5
|
fov = 35.5
|
||||||
size = 23.0
|
size = 23.0
|
||||||
|
|
||||||
[node name="Panel" type="Panel" parent="."]
|
[node name="NetworkPanel" type="Panel" parent="."]
|
||||||
offset_left = 40.0
|
anchors_preset = 4
|
||||||
offset_top = 40.0
|
anchor_top = 0.5
|
||||||
offset_right = 176.0
|
anchor_bottom = 0.5
|
||||||
offset_bottom = 93.0
|
offset_left = 47.0
|
||||||
|
offset_top = -137.0
|
||||||
|
offset_right = 183.0
|
||||||
|
offset_bottom = -84.0
|
||||||
|
grow_vertical = 2
|
||||||
theme_override_styles/panel = ExtResource("5_dvx6y")
|
theme_override_styles/panel = ExtResource("5_dvx6y")
|
||||||
|
|
||||||
|
[node name="NetworkInfo" type="VBoxContainer" parent="NetworkPanel"]
|
||||||
|
offset_left = 8.0
|
||||||
|
offset_right = 124.0
|
||||||
|
offset_bottom = 50.0
|
||||||
|
|
||||||
|
[node name="NetworkSideDisplay" type="Label" parent="NetworkPanel/NetworkInfo"]
|
||||||
|
layout_mode = 2
|
||||||
|
text = "Network Side"
|
||||||
|
horizontal_alignment = 1
|
||||||
|
|
||||||
|
[node name="UniquePeerID" type="Label" parent="NetworkPanel/NetworkInfo"]
|
||||||
|
layout_mode = 2
|
||||||
|
text = "Unique Peer ID"
|
||||||
|
horizontal_alignment = 1
|
||||||
|
vertical_alignment = 1
|
||||||
|
|
||||||
[node name="PlayerboardUI" type="GridContainer" parent="."]
|
[node name="PlayerboardUI" type="GridContainer" parent="."]
|
||||||
visible = false
|
visible = false
|
||||||
clip_contents = true
|
clip_contents = true
|
||||||
@@ -970,23 +990,6 @@ text = "Randomize"
|
|||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
text = "Arrange"
|
text = "Arrange"
|
||||||
|
|
||||||
[node name="NetworkInfo" type="VBoxContainer" parent="."]
|
|
||||||
offset_left = 48.0
|
|
||||||
offset_top = 40.0
|
|
||||||
offset_right = 164.0
|
|
||||||
offset_bottom = 90.0
|
|
||||||
|
|
||||||
[node name="NetworkSideDisplay" type="Label" parent="NetworkInfo"]
|
|
||||||
layout_mode = 2
|
|
||||||
text = "Network Side"
|
|
||||||
horizontal_alignment = 1
|
|
||||||
|
|
||||||
[node name="UniquePeerID" type="Label" parent="NetworkInfo"]
|
|
||||||
layout_mode = 2
|
|
||||||
text = "Unique Peer ID"
|
|
||||||
horizontal_alignment = 1
|
|
||||||
vertical_alignment = 1
|
|
||||||
|
|
||||||
[node name="Menu" type="VBoxContainer" parent="."]
|
[node name="Menu" type="VBoxContainer" parent="."]
|
||||||
anchors_preset = 8
|
anchors_preset = 8
|
||||||
anchor_left = 0.5
|
anchor_left = 0.5
|
||||||
@@ -1054,6 +1057,7 @@ environment = ExtResource("4_ky38j")
|
|||||||
[node name="CanvasLayer" type="CanvasLayer" parent="."]
|
[node name="CanvasLayer" type="CanvasLayer" parent="."]
|
||||||
|
|
||||||
[node name="MarginContainer" type="Control" parent="."]
|
[node name="MarginContainer" type="Control" parent="."]
|
||||||
|
visible = false
|
||||||
clip_contents = true
|
clip_contents = true
|
||||||
layout_direction = 2
|
layout_direction = 2
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
@@ -1066,16 +1070,6 @@ offset_right = 275.0
|
|||||||
offset_bottom = 129.0
|
offset_bottom = 129.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
|
|
||||||
[node name="Panel3" type="Panel" parent="MarginContainer"]
|
|
||||||
custom_minimum_size = Vector2(105, 105)
|
|
||||||
layout_mode = 2
|
|
||||||
offset_left = -2.0
|
|
||||||
offset_right = 103.0
|
|
||||||
offset_bottom = 105.0
|
|
||||||
grow_horizontal = 2
|
|
||||||
grow_vertical = 2
|
|
||||||
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
|
||||||
|
|
||||||
[node name="Panel4" type="Panel" parent="MarginContainer"]
|
[node name="Panel4" type="Panel" parent="MarginContainer"]
|
||||||
custom_minimum_size = Vector2(105, 105)
|
custom_minimum_size = Vector2(105, 105)
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
@@ -1112,18 +1106,37 @@ offset_top = 34.0
|
|||||||
offset_right = 253.0
|
offset_right = 253.0
|
||||||
offset_bottom = 114.0
|
offset_bottom = 114.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
theme_override_constants/separation = 58
|
|
||||||
|
|
||||||
[node name="Playergoals_1" type="GridContainer" parent="AllPlayerGoals"]
|
[node name="Panel1" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel1"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel1/MarginContainer"]
|
||||||
clip_contents = true
|
clip_contents = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
columns = 3
|
columns = 3
|
||||||
|
|
||||||
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Playergoals_1"]
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot1"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1132,7 +1145,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot1"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1142,7 +1155,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot1"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1152,7 +1165,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot1"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1162,11 +1175,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Playergoals_1"]
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot2"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1175,7 +1188,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot2"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1185,7 +1198,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot2"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1195,7 +1208,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot2"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1205,11 +1218,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Playergoals_1"]
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot3"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1218,7 +1231,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot3"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1228,7 +1241,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot3"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1238,7 +1251,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot3"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1248,11 +1261,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Playergoals_1"]
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot4"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1261,7 +1274,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot4"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1271,7 +1284,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot4"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1281,7 +1294,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot4"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1291,11 +1304,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Playergoals_1"]
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot5"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1304,7 +1317,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot5"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1314,7 +1327,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot5"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1324,7 +1337,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot5"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1334,11 +1347,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Playergoals_1"]
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot6"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1347,7 +1360,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot6"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1357,7 +1370,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot6"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1367,7 +1380,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot6"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1377,11 +1390,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Playergoals_1"]
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot7"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1390,7 +1403,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot7"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1400,7 +1413,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot7"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1410,7 +1423,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot7"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1420,11 +1433,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Playergoals_1"]
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot8"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1433,7 +1446,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot8"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1443,7 +1456,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot8"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1453,7 +1466,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot8"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1463,11 +1476,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Playergoals_1"]
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot9"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1476,7 +1489,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot9"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1486,7 +1499,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot9"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1496,7 +1509,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_1/Slot9"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1506,16 +1519,36 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Playergoals_2" type="GridContainer" parent="AllPlayerGoals"]
|
[node name="Panel2" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel2"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel2/MarginContainer"]
|
||||||
clip_contents = true
|
clip_contents = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
columns = 3
|
columns = 3
|
||||||
|
|
||||||
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Playergoals_2"]
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot1"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1524,7 +1557,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot1"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1534,7 +1567,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot1"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1544,7 +1577,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot1"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1554,11 +1587,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Playergoals_2"]
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot2"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1567,7 +1600,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot2"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1577,7 +1610,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot2"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1587,7 +1620,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot2"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1597,11 +1630,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Playergoals_2"]
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot3"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1610,7 +1643,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot3"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1620,7 +1653,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot3"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1630,7 +1663,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot3"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1640,11 +1673,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Playergoals_2"]
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot4"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1653,7 +1686,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot4"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1663,7 +1696,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot4"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1673,7 +1706,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot4"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1683,11 +1716,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Playergoals_2"]
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot5"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1696,7 +1729,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot5"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1706,7 +1739,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot5"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1716,7 +1749,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot5"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1726,11 +1759,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Playergoals_2"]
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot6"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1739,7 +1772,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot6"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1749,7 +1782,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot6"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1759,7 +1792,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot6"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1769,11 +1802,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Playergoals_2"]
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot7"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1782,7 +1815,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot7"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1792,7 +1825,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot7"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1802,7 +1835,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot7"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1812,11 +1845,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Playergoals_2"]
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot8"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1825,7 +1858,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot8"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1835,7 +1868,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot8"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1845,7 +1878,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot8"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1855,11 +1888,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Playergoals_2"]
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot9"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1868,7 +1901,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot9"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1878,7 +1911,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot9"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1888,7 +1921,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_2/Slot9"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1898,16 +1931,36 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Playergoals_3" type="GridContainer" parent="AllPlayerGoals"]
|
[node name="Panel3" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel3"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel3/MarginContainer"]
|
||||||
clip_contents = true
|
clip_contents = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
columns = 3
|
columns = 3
|
||||||
|
|
||||||
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Playergoals_3"]
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot1"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1916,7 +1969,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot1"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1926,7 +1979,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot1"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1936,7 +1989,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot1"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1946,11 +1999,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Playergoals_3"]
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot2"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -1959,7 +2012,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot2"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1969,7 +2022,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot2"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1979,7 +2032,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot2"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -1989,11 +2042,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Playergoals_3"]
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot3"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2002,7 +2055,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot3"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2012,7 +2065,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot3"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2022,7 +2075,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot3"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2032,11 +2085,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Playergoals_3"]
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot4"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2045,7 +2098,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot4"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2055,7 +2108,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot4"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2065,7 +2118,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot4"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2075,11 +2128,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Playergoals_3"]
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot5"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2088,7 +2141,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot5"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2098,7 +2151,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot5"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2108,7 +2161,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot5"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2118,11 +2171,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Playergoals_3"]
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot6"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2131,7 +2184,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot6"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2141,7 +2194,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot6"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2151,7 +2204,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot6"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2161,11 +2214,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Playergoals_3"]
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot7"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2174,7 +2227,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot7"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2184,7 +2237,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot7"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2194,7 +2247,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot7"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2204,11 +2257,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Playergoals_3"]
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot8"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2217,7 +2270,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot8"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2227,7 +2280,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot8"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2237,7 +2290,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot8"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2247,11 +2300,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Playergoals_3"]
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot9"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2260,7 +2313,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot9"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2270,7 +2323,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot9"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2280,7 +2333,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_3/Slot9"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2290,16 +2343,36 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Playergoals_4" type="GridContainer" parent="AllPlayerGoals"]
|
[node name="Panel4" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel4"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel4/MarginContainer"]
|
||||||
clip_contents = true
|
clip_contents = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
columns = 3
|
columns = 3
|
||||||
|
|
||||||
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Playergoals_4"]
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot1"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2308,7 +2381,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot1"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2318,7 +2391,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot1"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2328,7 +2401,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot1"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot1"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2338,11 +2411,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Playergoals_4"]
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot2"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2351,7 +2424,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot2"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2361,7 +2434,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot2"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2371,7 +2444,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot2"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot2"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2381,11 +2454,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Playergoals_4"]
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot3"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2394,7 +2467,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot3"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2404,7 +2477,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot3"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2414,7 +2487,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot3"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot3"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2424,11 +2497,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Playergoals_4"]
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot4"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2437,7 +2510,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot4"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2447,7 +2520,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot4"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2457,7 +2530,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot4"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot4"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2467,11 +2540,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Playergoals_4"]
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot5"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2480,7 +2553,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot5"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2490,7 +2563,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot5"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2500,7 +2573,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot5"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot5"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2510,11 +2583,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Playergoals_4"]
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot6"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2523,7 +2596,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot6"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2533,7 +2606,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot6"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2543,7 +2616,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot6"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot6"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2553,11 +2626,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Playergoals_4"]
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot7"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2566,7 +2639,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot7"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2576,7 +2649,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot7"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2586,7 +2659,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot7"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot7"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2596,11 +2669,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Playergoals_4"]
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot8"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2609,7 +2682,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot8"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2619,7 +2692,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot8"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2629,7 +2702,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot8"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot8"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2639,11 +2712,11 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("10_my1qp")
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Playergoals_4"]
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
texture = ExtResource("17_hh6ui")
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot9"]
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
offset_right = 24.0
|
offset_right = 24.0
|
||||||
@@ -2652,7 +2725,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("7_xwcc1")
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot9"]
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2662,7 +2735,7 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("8_quhbu")
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot9"]
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
@@ -2672,7 +2745,3303 @@ grow_horizontal = 2
|
|||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
texture = ExtResource("9_i0gbs")
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Playergoals_4/Slot9"]
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Panel5" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel5"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel5/MarginContainer"]
|
||||||
|
clip_contents = true
|
||||||
|
layout_mode = 2
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Panel6" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel6"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel6/MarginContainer"]
|
||||||
|
clip_contents = true
|
||||||
|
layout_mode = 2
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Panel7" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel7"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel7/MarginContainer"]
|
||||||
|
clip_contents = true
|
||||||
|
layout_mode = 2
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Panel8" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel8"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel8/MarginContainer"]
|
||||||
|
clip_contents = true
|
||||||
|
layout_mode = 2
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Panel9" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel9"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel9/MarginContainer"]
|
||||||
|
clip_contents = true
|
||||||
|
layout_mode = 2
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Panel10" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel10"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel10/MarginContainer"]
|
||||||
|
clip_contents = true
|
||||||
|
layout_mode = 2
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Panel11" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel11"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel11/MarginContainer"]
|
||||||
|
clip_contents = true
|
||||||
|
layout_mode = 2
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Panel12" type="Panel" parent="AllPlayerGoals"]
|
||||||
|
visible = false
|
||||||
|
custom_minimum_size = Vector2(105, 105)
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
|
||||||
|
|
||||||
|
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel12"]
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 8
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
offset_left = -44.0
|
||||||
|
offset_top = -43.5
|
||||||
|
offset_right = 36.0
|
||||||
|
offset_bottom = 36.5
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel12/MarginContainer"]
|
||||||
|
clip_contents = true
|
||||||
|
layout_mode = 2
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("17_hh6ui")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot9"]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
|
|||||||
Reference in New Issue
Block a user