Simulation Server
Creating a simulation server
Reading command line arguments
using System;
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?

