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

Function RemoveNamespace

Source/Engine/Tools/ModelTool/ModelTool.cpp:677–682  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

675}
676
677void RemoveNamespace(String& name)
678{
679 const int32 namespaceStart = name.Find(':');
680 if (namespaceStart != -1)
681 name = name.Substring(namespaceStart + 1);
682}
683
684bool ModelTool::ImportData(const String& path, ModelData& data, Options& options, String& errorMsg)
685{

Callers 1

ImportDataMethod · 0.85

Calls 2

SubstringMethod · 0.80
FindMethod · 0.45

Tested by

no test coverage detected