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

Method CanReloadScripts

Source/Editor/Managed/ManagedEditor.cpp:340–350  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

338}
339
340bool ManagedEditor::CanReloadScripts()
341{
342 if (!HasManagedInstance())
343 return false;
344 if (Internal_CanReloadScripts == nullptr)
345 {
346 Internal_CanReloadScripts = GetClass()->GetMethod("Internal_CanReloadScripts");
347 ASSERT(Internal_CanReloadScripts);
348 }
349 return MUtils::Unbox<bool>(Internal_CanReloadScripts->Invoke(GetManagedInstance(), nullptr, nullptr));
350}
351
352bool ManagedEditor::CanAutoBuildCSG()
353{

Callers 1

UpdateMethod · 0.80

Calls 5

HasManagedInstanceFunction · 0.50
GetClassFunction · 0.50
GetManagedInstanceFunction · 0.50
GetMethodMethod · 0.45
InvokeMethod · 0.45

Tested by

no test coverage detected