| 47 | namespace py = pybind11; |
| 48 | |
| 49 | ScriptStatus::ScriptStatus() |
| 50 | { |
| 51 | ScriptModule::CheckIfPythonEverSuccessfullyInitialized(); |
| 52 | if ((TheSynth->IsLoadingState() || Prefab::sLoadingPrefab) && ScriptModule::sHasPythonEverSuccessfullyInitialized) |
| 53 | ScriptModule::InitializePythonIfNecessary(); |
| 54 | } |
| 55 | |
| 56 | ScriptStatus::~ScriptStatus() |
| 57 | { |
nothing calls this directly
no test coverage detected