Skip to content

Commit 1958ffe

Browse files
committed
Bump version, add stamina feat., misc. refactor
1 parent 3c7c711 commit 1958ffe

565 files changed

Lines changed: 7691 additions & 4727 deletions

File tree

Some content is hidden

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

.ai/mcp/mcp.json

Whitespace-only changes.

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
builds/* linguist-generated
1+
builds/* filter=lfs diff=lfs merge=lfs -text
22
android/* linguist-generated

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ A clear and concise description of what the bug is.
1212

1313
**To Reproduce**
1414
Steps to reproduce the behavior:
15+
1516
1. Go to '...'
1617
2. Click on '....'
1718
3. Scroll down to '....'
@@ -21,10 +22,10 @@ Steps to reproduce the behavior:
2122
If applicable, add screenshots to help explain your problem.
2223

2324
**Device Information(please complete the following information):**
24-
- OS: [e.g. iOS]
25-
- Browser [e.g. chrome, safari]
26-
- Version [e.g. 2.0.1]
2725

26+
- OS: [e.g. iOS]
27+
- Browser [e.g. chrome, safari]
28+
- Version [e.g. 2.0.1]
2829

2930
**Additional context**
3031
Add any other context about the problem here.

.github/workflows/export.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -19,43 +19,43 @@ jobs:
1919
steps:
2020
# Always include the checkout step so that
2121
# your project is available for Godot to export
22-
- name: 🛒 checkout
23-
uses: actions/checkout@v4
24-
- name: Set up JDK 17
25-
uses: actions/setup-java@v3
26-
with:
27-
java-version: '17'
28-
distribution: 'temurin'
22+
- name: 🛒 checkout
23+
uses: actions/checkout@v4
24+
- name: Set up JDK 17
25+
uses: actions/setup-java@v3
26+
with:
27+
java-version: '17'
28+
distribution: 'temurin'
2929

30-
- name: Setup Android SDK
31-
uses: android-actions/setup-android@v3
32-
- name: 📤 export game
33-
id: export
34-
# Use latest version (see releases for all versions)
35-
uses: firebelley/godot-export@v6.0.0
36-
with:
37-
# Defining all the required inputs
38-
godot_executable_download_url: https://github.com/godotengine/godot-builds/releases/download/4.4-dev3/Godot_v4.4-dev3_linux.x86_64.zip
39-
godot_export_templates_download_url: https://github.com/godotengine/godot-builds/releases/download/4.4-dev3/Godot_v4.4-dev3_export_templates.tpz
40-
relative_project_path: ./
41-
archive_output: true
42-
- name: Install rsync 📚
43-
run: |
30+
- name: Setup Android SDK
31+
uses: android-actions/setup-android@v3
32+
- name: 📤 export game
33+
id: export
34+
# Use latest version (see releases for all versions)
35+
uses: firebelley/godot-export@v6.0.0
36+
with:
37+
# Defining all the required inputs
38+
godot_executable_download_url: https://github.com/godotengine/godot-builds/releases/download/4.4-dev3/Godot_v4.4-dev3_linux.x86_64.zip
39+
godot_export_templates_download_url: https://github.com/godotengine/godot-builds/releases/download/4.4-dev3/Godot_v4.4-dev3_export_templates.tpz
40+
relative_project_path: ./
41+
archive_output: true
42+
- name: Install rsync 📚
43+
run: |
4444
sudo apt-get update && sudo apt-get install -y rsync
45-
- name: Deploy 🚀
46-
uses: JamesIves/github-pages-deploy-action@v4
47-
with:
45+
- name: Deploy 🚀
46+
uses: JamesIves/github-pages-deploy-action@v4
47+
with:
4848
token: ${{ secrets.GITHUB_TOKEN }}
4949
single-commit: true
5050
folder: ${{ steps.export.outputs.build_directory }}/Web # The folder the action should deploy.
5151
branch: gh-pages
52-
# This release action has worked well for me. However, you can most likely use any release action of your choosing.
53-
# https://github.com/ncipollo/release-action
54-
- name: create release
55-
uses: ncipollo/release-action@v1.14.0
56-
with:
57-
token: ${{ secrets.GITHUB_TOKEN }}
58-
generateReleaseNotes: true
59-
tag: ${{ env.TAG }}
60-
artifacts: ${{ steps.export.outputs.archive_directory }}/*
61-
replacesArtifacts: true
52+
# This release action has worked well for me. However, you can most likely use any release action of your choosing.
53+
# https://github.com/ncipollo/release-action
54+
- name: create release
55+
uses: ncipollo/release-action@v1.14.0
56+
with:
57+
token: ${{ secrets.GITHUB_TOKEN }}
58+
generateReleaseNotes: true
59+
tag: ${{ env.TAG }}
60+
artifacts: ${{ steps.export.outputs.archive_directory }}/*
61+
replacesArtifacts: true

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- gh-pages
66
- korGE-legacy
77
- dev
8-
8+
99
concurrency:
1010
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
1111
cancel-in-progress: true
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[folding]
22

3-
sections_unfolded=PackedStringArray()
3+
sections_unfolded = PackedStringArray()
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[folding]
22

3-
sections_unfolded=PackedStringArray()
3+
sections_unfolded = PackedStringArray()
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[folding]
22

3-
sections_unfolded=PackedStringArray()
3+
sections_unfolded = PackedStringArray()
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[folding]
22

3-
sections_unfolded=PackedStringArray()
3+
sections_unfolded = PackedStringArray()
Lines changed: 201 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
[editor_states]
2+
3+
$selected_nodes = Array[NodePath]([])
4+
2D = {
5+
"grid_offset" : Vector2(0, 0),
6+
"grid_snap_active" : false,
7+
"grid_step" : Vector2(8, 8),
8+
"grid_visibility" : 1,
9+
"ofs" : Vector2(-174, -119),
10+
"primary_grid_step" : Vector2i(8, 8),
11+
"show_group_gizmos" : true,
12+
"show_guides" : true,
13+
"show_helpers" : false,
14+
"show_lock_gizmos" : true,
15+
"show_origin" : true,
16+
"show_position_gizmos" : true,
17+
"show_rulers" : true,
18+
"show_transformation_gizmos" : true,
19+
"show_viewport" : true,
20+
"show_zoom_control" : true,
21+
"smart_snap_active" : false,
22+
"snap_guides" : true,
23+
"snap_node_anchors" : true,
24+
"snap_node_center" : true,
25+
"snap_node_parent" : true,
26+
"snap_node_sides" : true,
27+
"snap_other_nodes" : true,
28+
"snap_pixel" : true,
29+
"snap_relative" : false,
30+
"snap_rotation" : false,
31+
"snap_rotation_offset" : 0.0,
32+
"snap_rotation_step" : 0.2617994,
33+
"snap_scale" : false,
34+
"snap_scale_step" : 0.1,
35+
"zoom" : 0.44444445
36+
}
37+
3D = {
38+
"fov" : 70.01,
39+
"gizmos_status" : {
40+
"AudioListener3D" : 0,
41+
"AudioStreamPlayer3D" : 0,
42+
"CPUParticles3D" : 0,
43+
"CSGShape3D" : 0,
44+
"Camera3D" : 0,
45+
"ChainIK3D" : 0,
46+
"CollisionObject3D" : 0,
47+
"CollisionPolygon3D" : 0,
48+
"CollisionShape3D" : 0,
49+
"Decal" : 0,
50+
"FogVolume" : 0,
51+
"GPUParticles3D" : 0,
52+
"GPUParticlesCollision3D" : 0,
53+
"Joint3D" : 0,
54+
"Light3D" : 0,
55+
"LightmapGI" : 0,
56+
"LightmapProbe" : 0,
57+
"Marker3D" : 0,
58+
"MeshInstance3DCustomAABB" : 0,
59+
"NavigationLink3D" : 0,
60+
"NavigationObstacle3D" : 0,
61+
"NavigationRegion3D" : 0,
62+
"OccluderInstance3D" : 0,
63+
"Particles3DEmissionShape" : 0,
64+
"Path3D" : 0,
65+
"PhysicalBone3D" : 0,
66+
"RayCast3D" : 0,
67+
"ReflectionProbe" : 0,
68+
"ShapeCast3D" : 0,
69+
"Skeleton3D" : 0,
70+
"SoftBody3D" : 0,
71+
"SpringArm3D" : 0,
72+
"SpringBoneCollision3D" : 0,
73+
"SpringBoneSimulator3D" : 0,
74+
"TwoBoneIK3D" : 0,
75+
"VehicleWheel3D" : 0,
76+
"VisibleOnScreenNotifier3D" : 0,
77+
"VoxelGI" : 0
78+
},
79+
"local_coords" : false,
80+
"preserve_children_transform" : false,
81+
"preview_sun_env" : {
82+
"environ_ao_enabled" : false,
83+
"environ_enabled" : true,
84+
"environ_energy" : 1.0,
85+
"environ_gi_enabled" : false,
86+
"environ_glow_enabled" : true,
87+
"environ_ground_color" : Color(0.2, 0.169, 0.133, 1),
88+
"environ_sky_color" : Color(0.385, 0.454, 0.55, 1),
89+
"environ_tonemap_enabled" : false,
90+
"sun_color" : Color(1, 1, 1, 1),
91+
"sun_enabled" : true,
92+
"sun_energy" : 1.0,
93+
"sun_rotation" : Vector2(-1.0471976, 2.6179938),
94+
"sun_shadow_max_distance" : 100.0
95+
},
96+
"rotate_snap" : 15.0,
97+
"scale_snap" : 10.0,
98+
"show_grid" : true,
99+
"show_origin" : true,
100+
"snap_enabled" : false,
101+
"trackball_enabled" : false,
102+
"translate_snap" : 1.0,
103+
"vertex_snap_origin_mode" : false,
104+
"vertex_snap_use_collision" : false,
105+
"viewport_mode" : 1,
106+
"viewport_splits" : {
107+
"first" : 0.0,
108+
"main" : 0.0,
109+
"second" : 0.0
110+
},
111+
"viewports" : [{
112+
"auto_orthogonal" : false,
113+
"auto_orthogonal_enabled" : true,
114+
"cinematic_preview" : false,
115+
"display_mode" : 22,
116+
"distance" : 4.0,
117+
"doppler" : false,
118+
"frame_time" : false,
119+
"gizmos" : true,
120+
"grid" : true,
121+
"half_res" : false,
122+
"information" : false,
123+
"listener" : true,
124+
"lock_rotation" : false,
125+
"orthogonal" : false,
126+
"position" : Vector3(0, 0, 0),
127+
"transform_gizmo" : true,
128+
"use_environment" : false,
129+
"view_type" : 0,
130+
"x_rotation" : 0.5,
131+
"y_rotation" : -0.5
132+
}, {
133+
"auto_orthogonal" : false,
134+
"auto_orthogonal_enabled" : true,
135+
"cinematic_preview" : false,
136+
"display_mode" : 22,
137+
"distance" : 4.0,
138+
"doppler" : false,
139+
"frame_time" : false,
140+
"gizmos" : true,
141+
"grid" : true,
142+
"half_res" : false,
143+
"information" : false,
144+
"listener" : false,
145+
"lock_rotation" : false,
146+
"orthogonal" : false,
147+
"position" : Vector3(0, 0, 0),
148+
"transform_gizmo" : true,
149+
"use_environment" : false,
150+
"view_type" : 0,
151+
"x_rotation" : 0.5,
152+
"y_rotation" : -0.5
153+
}, {
154+
"auto_orthogonal" : false,
155+
"auto_orthogonal_enabled" : true,
156+
"cinematic_preview" : false,
157+
"display_mode" : 22,
158+
"distance" : 4.0,
159+
"doppler" : false,
160+
"frame_time" : false,
161+
"gizmos" : true,
162+
"grid" : true,
163+
"half_res" : false,
164+
"information" : false,
165+
"listener" : false,
166+
"lock_rotation" : false,
167+
"orthogonal" : false,
168+
"position" : Vector3(0, 0, 0),
169+
"transform_gizmo" : true,
170+
"use_environment" : false,
171+
"view_type" : 0,
172+
"x_rotation" : 0.5,
173+
"y_rotation" : -0.5
174+
}, {
175+
"auto_orthogonal" : false,
176+
"auto_orthogonal_enabled" : true,
177+
"cinematic_preview" : false,
178+
"display_mode" : 22,
179+
"distance" : 4.0,
180+
"doppler" : false,
181+
"frame_time" : false,
182+
"gizmos" : true,
183+
"grid" : true,
184+
"half_res" : false,
185+
"information" : false,
186+
"listener" : false,
187+
"lock_rotation" : false,
188+
"orthogonal" : false,
189+
"position" : Vector3(0, 0, 0),
190+
"transform_gizmo" : true,
191+
"use_environment" : false,
192+
"view_type" : 0,
193+
"x_rotation" : 0.5,
194+
"y_rotation" : -0.5
195+
}],
196+
"zfar" : 4000.01,
197+
"znear" : 0.05
198+
}
199+
Anim = {
200+
"visible" : false
201+
}

0 commit comments

Comments
 (0)