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

Method GetName

Source/Editor/Scripting/CodeEditor.cpp:142–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140}
141
142String CodeEditingManager::GetName(CodeEditorTypes editorType)
143{
144 const auto editor = GetCodeEditor(editorType);
145 if (editor)
146 {
147 return editor->GetName();
148 }
149 else
150 {
151 LOG(Warning, "Missing code editor type {0}", (int32)editorType);
152 return String::Empty;
153 }
154}
155
156String CodeEditingManager::GetGenerateProjectCustomArgs(CodeEditorTypes editorType)
157{

Callers 5

AddToRestoreMethod · 0.45
GetXmlDocsMethod · 0.45
TryGetPluginIconMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected