You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Remove choco requirement from Windows Pixel Streaming scripts. Make node installation folder specific and not pollute system or clash with existing node installations. Make SFU/Matchmaker Windows scripts have similar installation and run procedure to signalling server scripts. Make SFU order independent of whether it should start before or after signalling server by making it attempt a reconnect (every 2 seconds) to the signalling server after a disconnect. #jira UE-146769 #fyi Nick.Pace, William.Belcher, Phillipe.Rebours #rb self #preflight 62397417b3653cf6afd5c1e7 [CL 19464364 by Luke Bermingham in ue5-main branch]
18 lines
387 B
Batchfile
Executable File
18 lines
387 B
Batchfile
Executable File
@Rem Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
@echo off
|
|
|
|
@Rem Set script location as working directory for commands.
|
|
pushd "%~dp0"
|
|
|
|
@Rem Ensure we have NodeJs available for calling.
|
|
call setup_node.bat
|
|
|
|
@Rem Move to matchmaker.js directory and install its package.json
|
|
pushd %~dp0\..\..\
|
|
call platform_scripts\cmd\node\npm install --no-save
|
|
popd
|
|
|
|
@Rem Pop working directory
|
|
popd
|