Forrest logo
back to the spatial tool

spatial:tldr:cc612

spatial: Build workers for local deployment on Unreal on Windows.
$ spatial worker build --target=local --target=Windows
try on your machine

The command "spatial worker build --target=local --target=Windows" is used with the SpatialOS platform to build a worker for deployment on a local machine running Windows operating system.

Here is a breakdown of each part of the command:

  • "spatial": This is the command-line tool for interacting with the SpatialOS platform.
  • "worker": This specifies that we want to perform an action related to building a worker.
  • "build": This specific action is to build the worker for deployment.
  • "--target=local": This sets the target deployment platform to "local", indicating that we want to build the worker for running on the local machine.
  • "--target=Windows": This further specifies that we want to build the worker specifically for the Windows operating system.

Overall, this command is used to compile and create a worker specifically designed for running on a Windows machine locally, using the SpatialOS platform.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the spatial tool