| 396 | } |
| 397 | |
| 398 | bool GetLayerEditable(const AEGP_ItemH& itemHandle, pag::ID id) { |
| 399 | bool isEditable = true; |
| 400 | std::string keyString = GetKeyStringWithId("noReplace", id); |
| 401 | auto value = FindMarkerFromComposition(itemHandle, keyString); |
| 402 | if (value.has_value()) { |
| 403 | isEditable = false; |
| 404 | } |
| 405 | return isEditable; |
| 406 | } |
| 407 | |
| 408 | std::string GetCompositionStoragePath(const AEGP_ItemH& itemHandle) { |
| 409 | std::string storagePath = ""; |
no test coverage detected