Skip to content

Commit cd67d81

Browse files
authored
Merge pull request #9 from gitbrent/clean-up
Reorg Files
2 parents 5040b99 + 62c6e31 commit cd67d81

23 files changed

+41
-1929
lines changed

assets/gems/space/Special-Rock.png.import

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
importer="texture"
44
type="CompressedTexture2D"
55
uid="uid://c7gt64tslpp7g"
6-
path="res://.godot/imported/special-rock.png-3c8de7e42afccdc6cb8bc69e4f235e4d.ctex"
6+
path="res://.godot/imported/Special-Rock.png-80b98505586117bce91c6d04c6915cd8.ctex"
77
metadata={
88
"vram_texture": false
99
}
1010

1111
[deps]
1212

13-
source_file="res://assets/gems/space/special-rock.png"
14-
dest_files=["res://.godot/imported/special-rock.png-3c8de7e42afccdc6cb8bc69e4f235e4d.ctex"]
13+
source_file="res://assets/gems/space/Special-Rock.png"
14+
dest_files=["res://.godot/imported/Special-Rock.png-80b98505586117bce91c6d04c6915cd8.ctex"]
1515

1616
[params]
1717

game_boards/board_food/game_board/Board.gd renamed to game_boards/board_food/board_food.gd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ func _ready():
2626
# godot setup
2727
randomize()
2828
# A: populate board
29-
CmnFunc.fill_grid(hbox_container, grid_container, "res://game_boards/board_food/game_board/board_square_0.tscn", "res://game_boards/board_food/game_board/board_square_1.tscn")
29+
const brd_sq0 = "res://game_boards/board_food/assets/board_square_0.tscn"
30+
const brd_sq1 = "res://game_boards/board_food/assets/board_square_1.tscn"
31+
CmnFunc.fill_grid(hbox_container, grid_container, brd_sq0, brd_sq1)
3032
CmnFunc.fill_hbox(hbox_container, Enums.GemDict.FOOD, self._on_cell_click)
3133
# B: check board after init
3234
process_game_round()

game_boards/board_food/game_board/board.tscn renamed to game_boards/board_food/board_food.tscn

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[gd_scene load_steps=5 format=3 uid="uid://x4qq2j3l7nvb"]
22

3-
[ext_resource type="Script" path="res://game_boards/board_food/game_board/Board.gd" id="1_0vcii"]
4-
[ext_resource type="PackedScene" uid="uid://bh2knk60qbton" path="res://game_boards/board_food/game_board/board_square_0.tscn" id="2_o5ud0"]
5-
[ext_resource type="PackedScene" uid="uid://cry3vnlah6fkx" path="res://game_boards/board_food/game_board/board_square_1.tscn" id="3_a576l"]
3+
[ext_resource type="Script" path="res://game_boards/board_food/board_food.gd" id="1_4hho8"]
4+
[ext_resource type="PackedScene" uid="uid://bh2knk60qbton" path="res://game_boards/board_food/assets/board_square_0.tscn" id="2_5buol"]
5+
[ext_resource type="PackedScene" uid="uid://cry3vnlah6fkx" path="res://game_boards/board_food/assets/board_square_1.tscn" id="3_wwqts"]
66

77
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yj5kd"]
88
bg_color = Color(0, 0, 0, 0.411765)
99

1010
[node name="Board" type="Node2D"]
11-
script = ExtResource("1_0vcii")
11+
script = ExtResource("1_4hho8")
1212

1313
[node name="Background" type="Panel" parent="."]
1414
visible = false
@@ -23,19 +23,19 @@ theme_override_constants/h_separation = 0
2323
theme_override_constants/v_separation = 0
2424
columns = 8
2525

26-
[node name="BoardSquare0" parent="GridContainer" instance=ExtResource("2_o5ud0")]
26+
[node name="BoardSquare0" parent="GridContainer" instance=ExtResource("2_5buol")]
2727
visible = false
2828
layout_mode = 2
2929

30-
[node name="BoardSquare1" parent="GridContainer" instance=ExtResource("3_a576l")]
30+
[node name="BoardSquare1" parent="GridContainer" instance=ExtResource("3_wwqts")]
3131
visible = false
3232
layout_mode = 2
3333

34-
[node name="BoardSquare2" parent="GridContainer" instance=ExtResource("2_o5ud0")]
34+
[node name="BoardSquare2" parent="GridContainer" instance=ExtResource("2_5buol")]
3535
visible = false
3636
layout_mode = 2
3737

38-
[node name="BoardSquare3" parent="GridContainer" instance=ExtResource("3_a576l")]
38+
[node name="BoardSquare3" parent="GridContainer" instance=ExtResource("3_wwqts")]
3939
visible = false
4040
layout_mode = 2
4141

game_boards/board_food/game_board/GemCell.gd

Lines changed: 0 additions & 137 deletions
This file was deleted.

game_boards/board_food/game_board/GemControl.gd

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)