forked from spatialos/UnrealGDKExampleProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLaunchSpatial.bat
More file actions
13 lines (9 loc) · 739 Bytes
/
LaunchSpatial.bat
File metadata and controls
13 lines (9 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
@echo off
echo Starting a local Spatial deployment with the default launch configuration. Modify LaunchSpatial.bat if you want to use a different launch configuration.
pushd "%~dp0\spatial"
spatial worker build build-config
rem To launch a local Spatial deployment with a different launch configuration, change the default_launch.json argument to the name of your configuration file,
rem for example one_worker_test.json or two_worker_test.json. Similarly, you can specify a different snapshot than the default one by replacing the value of
rem the --snapshot argument with the path to the snapshot you want to launch with.
spatial local launch default_launch.json --snapshot=snapshots/default.snapshot --runtime_version=0.4.3
popd