| 288 | #if USE_EDITOR |
| 289 | |
| 290 | void LayersAndTagsSettings::Serialize(SerializeStream& stream, const void* otherObj) |
| 291 | { |
| 292 | SERIALIZE_GET_OTHER_OBJ(LayersAndTagsSettings); |
| 293 | |
| 294 | stream.JKEY("Tags"); |
| 295 | stream.StartArray(); |
| 296 | for (const String& e : Tags) |
| 297 | stream.String(e); |
| 298 | stream.EndArray(); |
| 299 | |
| 300 | stream.JKEY("Layers"); |
| 301 | stream.StartArray(); |
| 302 | for (const String& e : Layers) |
| 303 | stream.String(e); |
| 304 | stream.EndArray(); |
| 305 | } |
| 306 | |
| 307 | #endif |
| 308 |
nothing calls this directly
no test coverage detected