| 87 | ofxJSONElement ScriptModule::sStyleJSON; |
| 88 | |
| 89 | ScriptModule::ScriptModule() |
| 90 | { |
| 91 | CheckIfPythonEverSuccessfullyInitialized(); |
| 92 | if ((TheSynth->IsLoadingState() || Prefab::sLoadingPrefab) && sHasPythonEverSuccessfullyInitialized) |
| 93 | InitializePythonIfNecessary(); |
| 94 | |
| 95 | Reset(); |
| 96 | |
| 97 | mScriptModuleIndex = sScriptModules.size(); |
| 98 | sScriptModules.push_back(this); |
| 99 | |
| 100 | OSCReceiver::addListener(this); |
| 101 | } |
| 102 | |
| 103 | ScriptModule::~ScriptModule() |
| 104 | { |
nothing calls this directly
no test coverage detected