Skip to content

Commit 04a6c36

Browse files
Add DaySequence plugin and update Submodules
1 parent 8e510af commit 04a6c36

8 files changed

Lines changed: 34 additions & 11 deletions

File tree

Plugins/ALSXT

Submodule ALSXT updated 2922 files

Plugins/Ricochet

Submodule Ricochet updated 27 files

Source/TargetVector/TargetVector.Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public TargetVector(ReadOnlyTargetRules Target) : base(Target)
88
{
99
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
1010

11-
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "ALS", "ALSEditor", "ALSExtras", "ALSXT", "HeadMountedDisplay", "OnlineSubsystem", "OnlineSubsystemEOS"});
11+
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "ALS", "ALSEditor", "ALSExtras", "ALSXT", "HeadMountedDisplay", "OnlineSubsystem", "OnlineSubsystemEOS", "DaySequence", "DaySequenceEditor"});
1212
PrivateDependencyModuleNames.AddRange(["HTTP"]);
1313
}
1414
}

StartDedicatedServer.sh

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,33 @@ UE5_SERVER_PATH="/path/to/YourProject/Binaries/Linux/YourProjectServer"
77

88
NODE_VERSION="lts"
99

10+
GAME_PORT="7777"
11+
12+
STATS_PORT="6666"
13+
14+
REMOTE_CONTROL_PORT_HTTP="30010"
15+
16+
REMOTE_CONTROL_PORT_WEBSOCKET="30020"
17+
1018
# Arguments to pass to the UE5 Dedicated Server
11-
UE5_SERVER_ARGS="-log -port=7777"
19+
UE5_ADDTL_SERVER_ARGS="-log"
20+
21+
printf -v UE5_SERVER_ARGS "%s -port=%d -statsPort=%d\n" "$UE5_ADDTL_SERVER_ARGS" "$GAME_PORT" "$STATS_PORT"
22+
23+
24+
# Arguments to pass to the UE5 Dedicated Server
25+
# UE5_SERVER_ARGS="-log -port=7777"
1226
# Example: -log -port=7777 -QueryPort=27015
1327

28+
29+
echo "Launching TargetVector Dedicated Server..."
30+
31+
echo "🔎 Checking Dependencies"
32+
1433
# Check if Node.js is installed
1534
if ! command -v node &> /dev/null
1635
then
17-
echo "Node.js not found. Installing Node.js using NVM..."
36+
echo "Node.js not found. Installing Node.js using NVM..."
1837

1938
# Install NVM
2039
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
@@ -30,14 +49,14 @@ then
3049
# Set the installed LTS version as default
3150
nvm alias default "$NODE_VERSION"/*
3251

33-
echo "Node.js installation complete."
52+
echo "Node.js Installation Complete."
3453
else
35-
echo "Node.js is already installed."
54+
echo "Node.js is already installed."
3655
fi
3756

3857
# --- Launching UE5 Dedicated Server ---
3958

40-
echo "Launching UE5 Dedicated Server..."
59+
echo "Launching TargetVector Dedicated Server..."
4160

4261
if [ -f "$UE5_SERVER_PATH" ]; then
4362
"$UE5_SERVER_PATH" "$UE5_SERVER_ARGS"

TargetVector.uproject

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,10 @@
143143
{
144144
"Name": "RemoteControl",
145145
"Enabled": true
146+
},
147+
{
148+
"Name": "DaySequence",
149+
"Enabled": true
146150
}
147151
]
148152
}

0 commit comments

Comments
 (0)