MCPcopy Create free account
hub / github.com/MrNeRF/LichtFeld-Studio / enabledScripts

Method enabledScripts

src/visualizer/gui/panels/python_scripts_panel.cpp:116–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114 }
115
116 std::vector<std::filesystem::path> PythonScriptManagerState::enabledScripts() const {
117 std::lock_guard lock(mutex_);
118 std::vector<std::filesystem::path> result;
119 for (const auto& s : scripts_) {
120 if (s.enabled) {
121 result.push_back(s.path);
122 }
123 }
124 return result;
125 }
126
127} // namespace lfs::vis::gui::panels

Callers 1

register_scriptsFunction · 0.80

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected