Skip to content

Commit 4cfb085

Browse files
committed
Updated min godot version to 4.5 and replaced set_mouse_pos with set_mouse_position
1 parent d8d104f commit 4cfb085

File tree

44 files changed

+9247
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+9247
-21
lines changed

.github/workflows/pandora-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fail-fast: false
4040
max-parallel: 10
4141
matrix:
42-
godot-version: ["4.4", "4.5.1"]
42+
godot-version: ["4.5", "4.5.1"]
4343

4444
name: "🤖 CI on Godot ${{ matrix.godot-version }}"
4545
steps:

pandora/categories.gd

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,11 @@
22
class_name PandoraCategories
33

44

5-
const ITEMS = "1"
6-
const RARITY = "16"
7-
const QUESTS = "27"
8-
const DIALOGUES = "28"
9-
const SPELLS = "29"
10-
const MOCK__REQUIRED_FOR_TESTING__ = "54"
11-
const NPCS = "2"
5+
const ROOT = "F2e9QCtQ6e"
126

137

14-
class ItemsArmoryCategories:
15-
const SHIELDS = "8"
16-
17-
18-
class ItemsCategories:
19-
const ARMORY = "3"
20-
const TOOLS = "4"
21-
const ORES = "13"
8+
class RootCategories:
9+
const ITEMS = "_zMxaAiHqU"
10+
const NPCS = "PXyryU_CUw"
2211

2312

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
.breadcrumb {
2+
display: flex;
3+
border-radius: 6px;
4+
overflow: hidden;
5+
height: 45px;
6+
z-index: 1;
7+
background-color: #9d73eb;
8+
margin-top: 0px;
9+
margin-bottom: 10px;
10+
box-shadow: 0 0 3px black;
11+
}
12+
13+
.breadcrumb a {
14+
position: relative;
15+
display: flex;
16+
-ms-flex-positive: 1;
17+
flex-grow: 1;
18+
text-decoration: none;
19+
margin: auto;
20+
height: 100%;
21+
color: white;
22+
}
23+
24+
.breadcrumb a:first-child {
25+
padding-left: 5.2px;
26+
}
27+
28+
.breadcrumb a:last-child {
29+
padding-right: 5.2px;
30+
}
31+
32+
.breadcrumb a:after {
33+
content: "";
34+
position: absolute;
35+
display: inline-block;
36+
width: 45px;
37+
height: 45px;
38+
top: 0;
39+
right: -20px;
40+
background-color: #9d73eb;
41+
border-top-right-radius: 5px;
42+
transform: scale(0.707) rotate(45deg);
43+
box-shadow: 2px -2px rgba(0, 0, 0, 0.25);
44+
z-index: 1;
45+
}
46+
47+
.breadcrumb a:last-child:after {
48+
content: none;
49+
}
50+
51+
.breadcrumb a.active,
52+
.breadcrumb a:hover {
53+
background: #b899f2;
54+
color: white;
55+
text-decoration: underline;
56+
}
57+
58+
.breadcrumb a.active:after,
59+
.breadcrumb a:hover:after {
60+
background: #b899f2;
61+
}
62+
63+
.breadcrumb span {
64+
margin: inherit;
65+
z-index: 2;
66+
}

reports/report_1/css/logo.png

48.6 KB
Loading
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[remap]
2+
3+
importer="texture"
4+
type="CompressedTexture2D"
5+
uid="uid://dpqu3bq0b18jy"
6+
path="res://.godot/imported/logo.png-827919d13f1ae3f8ce594e95709add8e.ctex"
7+
metadata={
8+
"vram_texture": false
9+
}
10+
11+
[deps]
12+
13+
source_file="res://reports/report_1/css/logo.png"
14+
dest_files=["res://.godot/imported/logo.png-827919d13f1ae3f8ce594e95709add8e.ctex"]
15+
16+
[params]
17+
18+
compress/mode=0
19+
compress/high_quality=false
20+
compress/lossy_quality=0.7
21+
compress/uastc_level=0
22+
compress/rdo_quality_loss=0.0
23+
compress/hdr_compression=1
24+
compress/normal_map=0
25+
compress/channel_pack=0
26+
mipmaps/generate=false
27+
mipmaps/limit=-1
28+
roughness/mode=0
29+
roughness/src_normal=""
30+
process/channel_remap/red=0
31+
process/channel_remap/green=1
32+
process/channel_remap/blue=2
33+
process/channel_remap/alpha=3
34+
process/fix_alpha_border=true
35+
process/premult_alpha=false
36+
process/normal_map_invert_y=false
37+
process/hdr_as_srgb=false
38+
process/hdr_clamp_exposure=false
39+
process/size_limit=0
40+
detect_3d/compress_to=1

0 commit comments

Comments
 (0)