MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Start

Method Start

Source/Engine/Content/Content.cpp:348–360  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

346}
347
348bool LoadingThread::Start(const String& name)
349{
350 ASSERT(_thread == nullptr && name.HasChars());
351
352 // Create new thread
353 auto thread = Thread::Create(this, name, ThreadPriority::Normal);
354 if (thread == nullptr)
355 return true;
356
357 _thread = thread;
358
359 return false;
360}
361
362void LoadingThread::Run(ContentLoadTask* job)
363{

Callers 6

InitMethod · 0.45
CloneAssetFileMethod · 0.45
startLoadingMethod · 0.45
ProcessGroupFlowMethod · 0.45
SaveLODMethod · 0.45
loadMethod · 0.45

Calls 2

CreateFunction · 0.50
HasCharsMethod · 0.45

Tested by

no test coverage detected