BEPUphysics.Threading.ThreadTaskManager.AddThread C# (CSharp) Метод

AddThread() публичный Метод

Adds a thread to the manager.
public AddThread ( ) : void
Результат void
        public void AddThread()
        {
            AddThread(null, null);
        }

Same methods

ThreadTaskManager::AddThread ( Action initialization, object initializationInformation ) : void

Usage Example

Пример #1
0
 /// <summary>
 /// Adds a new worker thread to the engine.
 /// </summary>
 public void AddThread()
 {
     taskManager.AddThread();
     looper.AddThread();
 }