Skip to content

Commit 22f3b81

Browse files
committed
Support Unreal Engine 5.6
1 parent 3322536 commit 22f3b81

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
unreal_engine_version:
2121
[
2222
"4.27.0",
23-
"5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0", "5.5.0"
23+
"5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0", "5.5.0", "5.6.0"
2424
]
2525
version:
2626
["free", "full"]

Kdtree/Kdtree.uplugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"VersionName": "1.4.0",
55
"FriendlyName": "kd-tree",
66
"Description": "Blueprint nodes to build a kd-tree",
7-
"EngineVersion": "5.5.0",
7+
"EngineVersion": "5.6.0",
88
"Category": "Other",
99
"CreatedBy": "nutti (Colorful Pico)",
1010
"CreatedByURL": "https://github.com/nutti/UEPlugin-Kdtree",

tools/remove_code.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -eEu
66

77
SUPPORTED_VERSIONS=(
88
"4.26.0" "4.27.0"
9-
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0"
9+
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0"
1010
)
1111

1212
function usage() {

tools/replace_engine_version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -eEu
66

77
SUPPORTED_VERSIONS=(
88
"4.26.0" "4.27.0"
9-
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0"
9+
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0"
1010
)
1111

1212
function usage() {
@@ -35,6 +35,6 @@ fi
3535

3636
# shellcheck disable=SC2044
3737
for file in $(find "${source_dir}" -name "*.uplugin"); do
38-
sed -i -e "s/\"EngineVersion\": \"5.5.0\",/\"EngineVersion\": \"${engine_version}\",/g" "${file}"
38+
sed -i -e "s/\"EngineVersion\": \"5.6.0\",/\"EngineVersion\": \"${engine_version}\",/g" "${file}"
3939
echo "Replaced engine version in ${file}"
4040
done

0 commit comments

Comments
 (0)