| 123 | #if USE_EDITOR |
| 124 | |
| 125 | String Scene::GetPath() const |
| 126 | { |
| 127 | AssetInfo info; |
| 128 | if (Content::GetAssetInfo(GetID(), info)) |
| 129 | { |
| 130 | return info.Path; |
| 131 | } |
| 132 | |
| 133 | return String::Empty; |
| 134 | } |
| 135 | |
| 136 | String Scene::GetFilename() const |
| 137 | { |
no test coverage detected