update, fix
This commit is contained in:
+52
-38
@@ -405,19 +405,29 @@ func replace_bot_with_player(player_id):
|
|||||||
var bot_id = bots[0]
|
var bot_id = bots[0]
|
||||||
var bot_node = get_node_or_null(str(bot_id))
|
var bot_node = get_node_or_null(str(bot_id))
|
||||||
if bot_node:
|
if bot_node:
|
||||||
# Transfer bot's goals to new player
|
# Get bot's state
|
||||||
var goals = bot_node.goals
|
var goals = bot_node.goals
|
||||||
|
var playerboard = bot_node.playerboard.duplicate()
|
||||||
|
var current_pos = bot_node.current_position
|
||||||
|
|
||||||
|
# Transfer state to new player
|
||||||
var player_node = get_node_or_null(str(player_id))
|
var player_node = get_node_or_null(str(player_id))
|
||||||
if player_node:
|
if player_node:
|
||||||
player_node.goals = goals
|
player_node.goals = goals
|
||||||
rpc("sync_player_goals", player_id, goals)
|
player_node.playerboard = playerboard.duplicate() # Make sure to duplicate
|
||||||
|
player_node.current_position = current_pos
|
||||||
|
|
||||||
|
# Sync state
|
||||||
|
rpc("sync_player_goals", player_id, goals)
|
||||||
|
rpc("sync_playerboard", player_id, playerboard)
|
||||||
|
|
||||||
|
# Remove bot but keep board structure intact
|
||||||
|
bots.pop_front()
|
||||||
|
players.erase(bot_id)
|
||||||
|
players.append(player_id)
|
||||||
|
rpc("remove_bot_keep_board", bot_id)
|
||||||
|
rpc("sync_players", players)
|
||||||
|
|
||||||
# Now remove the bot
|
|
||||||
bots.pop_front()
|
|
||||||
players.erase(bot_id)
|
|
||||||
players.append(player_id)
|
|
||||||
rpc("remove_bot", bot_id)
|
|
||||||
rpc("sync_players", players)
|
|
||||||
|
|
||||||
@rpc("call_local")
|
@rpc("call_local")
|
||||||
func remove_bot(bot_id):
|
func remove_bot(bot_id):
|
||||||
@@ -522,43 +532,47 @@ func update_all_players_boards():
|
|||||||
if not game_started:
|
if not game_started:
|
||||||
return
|
return
|
||||||
|
|
||||||
var all_players = get_tree().get_nodes_in_group("Players")
|
|
||||||
var local_id = multiplayer.get_unique_id()
|
var local_id = multiplayer.get_unique_id()
|
||||||
|
var all_players = get_tree().get_nodes_in_group("Players")
|
||||||
|
var all_player_boards = $AllPlayerBoards
|
||||||
|
|
||||||
# Sort players by relative position to local player
|
# Store current active tab
|
||||||
all_players.sort_custom(func(a, b):
|
var current_tab = all_player_boards.current_tab
|
||||||
var a_id = int(String(a.name))
|
|
||||||
var b_id = int(String(b.name))
|
|
||||||
|
|
||||||
# Calculate relative positions
|
# Board 1 should show host (server)
|
||||||
var a_rel = (a_id - local_id + max_players) % max_players
|
var host_player = null
|
||||||
var b_rel = (b_id - local_id + max_players) % max_players
|
# Find host player (ID 1)
|
||||||
return a_rel < b_rel
|
for player in all_players:
|
||||||
)
|
if int(String(player.name)) == 1:
|
||||||
|
host_player = player
|
||||||
|
break
|
||||||
|
|
||||||
# Update each player's board in AllPlayerBoards
|
# Update host board
|
||||||
for i in range(min(all_players.size() - 1, 3)): # Skip local player, max 3 other players
|
var host_board = all_player_boards.get_node("1")
|
||||||
var player = all_players[i + 1] # +1 to skip local player
|
if host_player and host_board and host_board.has_node("PlayerboardUI"):
|
||||||
var board = $AllPlayerBoards.get_child(i) # "2", "3", "4"
|
host_board.visible = true
|
||||||
var board_ui = board.get_node("PlayerboardUI")
|
var board_ui = host_board.get_node("PlayerboardUI")
|
||||||
|
|
||||||
# Update each slot
|
|
||||||
for slot_idx in range(25):
|
for slot_idx in range(25):
|
||||||
var slot = board_ui.get_node("Slot%d" % (slot_idx + 1))
|
update_board_slot(board_ui, slot_idx, host_player.playerboard[slot_idx])
|
||||||
var value = player.playerboard[slot_idx]
|
|
||||||
|
|
||||||
# Hide all tiles first
|
# Sort remaining players by ID for boards 2-4
|
||||||
slot.get_node("TileHeart").hide()
|
var other_players = all_players.filter(func(p): return int(String(p.name)) != 1)
|
||||||
slot.get_node("TileDiamond").hide()
|
other_players.sort_custom(func(a, b): return int(String(a.name)) < int(String(b.name)))
|
||||||
slot.get_node("TileStar").hide()
|
|
||||||
slot.get_node("TileCoin").hide()
|
|
||||||
|
|
||||||
# Show correct tile based on value
|
# Update boards 2-4 with remaining players
|
||||||
match value:
|
for i in range(min(other_players.size(), 3)):
|
||||||
7: slot.get_node("TileHeart").show()
|
var board_num = i + 2 # boards 2,3,4
|
||||||
8: slot.get_node("TileDiamond").show()
|
var player = other_players[i]
|
||||||
9: slot.get_node("TileStar").show()
|
var board = all_player_boards.get_node(str(board_num))
|
||||||
10: slot.get_node("TileCoin").show()
|
|
||||||
|
if board and board.has_node("PlayerboardUI"):
|
||||||
|
board.visible = true
|
||||||
|
var board_ui = board.get_node("PlayerboardUI")
|
||||||
|
for slot_idx in range(25):
|
||||||
|
update_board_slot(board_ui, slot_idx, player.playerboard[slot_idx])
|
||||||
|
|
||||||
|
# Restore previous active tab
|
||||||
|
all_player_boards.current_tab = current_tab
|
||||||
|
|
||||||
@rpc("any_peer", "call_local")
|
@rpc("any_peer", "call_local")
|
||||||
func sync_playerboard(player_id: int, new_playerboard: Array):
|
func sync_playerboard(player_id: int, new_playerboard: Array):
|
||||||
|
|||||||
+819
-4
@@ -2690,17 +2690,832 @@ theme_override_styles/tab_focus = SubResource("StyleBoxEmpty_s1l63")
|
|||||||
theme_override_styles/tab_selected = ExtResource("18_u5x6e")
|
theme_override_styles/tab_selected = ExtResource("18_u5x6e")
|
||||||
theme_override_styles/tab_hovered = ExtResource("19_w1rqq")
|
theme_override_styles/tab_hovered = ExtResource("19_w1rqq")
|
||||||
theme_override_styles/tab_unselected = ExtResource("20_q6bc1")
|
theme_override_styles/tab_unselected = ExtResource("20_q6bc1")
|
||||||
current_tab = 0
|
current_tab = 1
|
||||||
tabs_position = 1
|
tabs_position = 1
|
||||||
clip_tabs = false
|
clip_tabs = false
|
||||||
|
|
||||||
|
[node name="1" type="MarginContainer" parent="AllPlayerBoards"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
theme_override_constants/margin_left = 10
|
||||||
|
theme_override_constants/margin_top = 10
|
||||||
|
theme_override_constants/margin_right = 10
|
||||||
|
theme_override_constants/margin_bottom = 10
|
||||||
|
metadata/_tab_index = 0
|
||||||
|
|
||||||
|
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/1"]
|
||||||
|
clip_contents = true
|
||||||
|
layout_mode = 2
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
columns = 5
|
||||||
|
|
||||||
|
[node name="Slot1" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot2" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot3" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot4" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot5" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot6" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot7" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot8" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot9" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot10" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot11" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot12" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot13" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot14" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot15" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot16" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot17" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot18" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot19" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot20" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot21" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot22" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot23" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot24" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
|
[node name="Slot25" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
|
||||||
|
layout_mode = 2
|
||||||
|
texture = ExtResource("18_p3nmx")
|
||||||
|
|
||||||
|
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("7_xwcc1")
|
||||||
|
|
||||||
|
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("8_quhbu")
|
||||||
|
|
||||||
|
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("9_i0gbs")
|
||||||
|
|
||||||
|
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25"]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 2
|
||||||
|
offset_right = 24.0
|
||||||
|
offset_bottom = 24.0
|
||||||
|
texture = ExtResource("10_my1qp")
|
||||||
|
|
||||||
[node name="2" type="MarginContainer" parent="AllPlayerBoards"]
|
[node name="2" type="MarginContainer" parent="AllPlayerBoards"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme_override_constants/margin_left = 10
|
theme_override_constants/margin_left = 10
|
||||||
theme_override_constants/margin_top = 10
|
theme_override_constants/margin_top = 10
|
||||||
theme_override_constants/margin_right = 10
|
theme_override_constants/margin_right = 10
|
||||||
theme_override_constants/margin_bottom = 10
|
theme_override_constants/margin_bottom = 10
|
||||||
metadata/_tab_index = 0
|
metadata/_tab_index = 1
|
||||||
|
|
||||||
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/2"]
|
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/2"]
|
||||||
clip_contents = true
|
clip_contents = true
|
||||||
@@ -3515,7 +4330,7 @@ theme_override_constants/margin_left = 10
|
|||||||
theme_override_constants/margin_top = 10
|
theme_override_constants/margin_top = 10
|
||||||
theme_override_constants/margin_right = 10
|
theme_override_constants/margin_right = 10
|
||||||
theme_override_constants/margin_bottom = 10
|
theme_override_constants/margin_bottom = 10
|
||||||
metadata/_tab_index = 1
|
metadata/_tab_index = 2
|
||||||
|
|
||||||
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/3"]
|
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/3"]
|
||||||
clip_contents = true
|
clip_contents = true
|
||||||
@@ -4330,7 +5145,7 @@ theme_override_constants/margin_left = 10
|
|||||||
theme_override_constants/margin_top = 10
|
theme_override_constants/margin_top = 10
|
||||||
theme_override_constants/margin_right = 10
|
theme_override_constants/margin_right = 10
|
||||||
theme_override_constants/margin_bottom = 10
|
theme_override_constants/margin_bottom = 10
|
||||||
metadata/_tab_index = 2
|
metadata/_tab_index = 3
|
||||||
|
|
||||||
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/4"]
|
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/4"]
|
||||||
clip_contents = true
|
clip_contents = true
|
||||||
|
|||||||
Reference in New Issue
Block a user