Simulation Server
Creating a Simulation Server
Reading command line arguments
using System;
using UnityEngine;
public class Boot : MonoBehaviour
{
void Start()
{
var args = Environment.GetCommandLineArgs();
var isSimulationServer = false;
foreach (var arg in args)
{
if (arg == "--coherence-simulation-server")
{
isSimulationServer = true;
}
}
/* do things based on 'isSimulationServer' here... */
}
}Command line parameters in the cloud
SimulatorUtility
Builds

Build and deploy
Last updated
Was this helpful?

