Esempio n. 1
0
    public void StartSimulation()
    {
        Running = true;

        if (Mode == AtmosMode.Threaded)
        {
            AtmosThread.Start();
        }
    }
Esempio n. 2
0
    public void StartSimulation()
    {
        if (!CustomNetworkManager.Instance._isServer)
        {
            return;
        }

        Running = true;

        if (Mode == AtmosMode.Threaded)
        {
            AtmosThread.SetSpeed((int)Speed);
            AtmosThread.Start();
        }
    }