--------------------------------- EditorConfig::Initialize Load from JSON and generate derived data
| 35 | // Load from JSON and generate derived data |
| 36 | // |
| 37 | void EditorConfig::Initialize() |
| 38 | { |
| 39 | // try deserializing the user directory path |
| 40 | if (!(core::serialization::DeserializeFromFile(s_PointerPath, m_DirPointers))) |
| 41 | { |
| 42 | LOG("EditorConfig::Initialize > unable to deserialize directory pointers!", core::LogLevel::Error); |
| 43 | } |
| 44 | |
| 45 | m_DirPointers.m_EditorUserDir = m_DirPointers.m_ProjectPath + std::string("/user_data/editor/"); |
| 46 | } |
| 47 | |
| 48 | //--------------------------------- |
| 49 | // EditorConfig::QueryStartScene |
no outgoing calls
no test coverage detected